搜索资源列表
IISfangdaolian
- 实现对盗连者URL转向,自定义加密因子。查看服务器上线人数,服务器线程限制,防盗文件类型设置。URL过期时间设置-achieve even those on pirated URL shift from defined encryption factor. View on the number of servers, the server thread restrictions, security document type setting. URL expired installed
SocketServer.zip
- Full Multi-thread Client or Server Socket Class with ThreadPool,Full Multi-thread Client or Server Socket Class with ThreadPool
Java_Socke183657142005
- 一个基于Java编写的Socket程序,提供简单的FTP功能实现 This networking program set consists of implementation of FTP, TELNET, HTTP SERVER, UDP NEWS SERVER, Multi client parallel chat server, Date server. Knowledge of socket programming, applet, AWT, thread, and IO str
mt_server_demo
- 一个多线程的http服务器- A multi-thread http server
lan_multiuser_com
- 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。 使用时先建立ODBC,Server与ChatServer先运行,然后运行Client- Has realized based on the TCP/IP network communication face between the connection user and the server
ceshi
- 简单web服务器socket编程支持 自动获取ip 可选择文件根目录,可选择端口号 为每个文件请求建立一个线程-Simple web server socket programming support can choose to automatically obtain ip document root directory, choose the port number for each document request to establish a thread
ChatServer
- 用Java实现的socket编程 客户端-socket server thread
linux_file_transfer
- Linux中利用socket透過server,兩個client端傳送與接收檔案,可在code中設定ip/port,為linux入門者參考code,有使用thread,故編譯時要加一條-lpthread-Socket through the use of Linux in the server, two client-side to send and receive files, can be set in the code in the ip/port, for the entry-linux
epollExample.txt
- 一个简短的epoll服务器示例, 监听5000个端口, 使用线程池 运行这个程序需要预先设置栈内存和文件描述符上限, 否则运行失败-A brief example of epoll server, monitor port 5000, use the thread pool to run this program requires a pre-set upper limit of the stack memory and file descr iptor, otherwis
clientAndServer
- MFC实现的客户端服务器,vc6.0开发,使用多线程实现.是初学者可以使用的良好代码-MFC to achieve client-server, vc6.0 development, using multi-thread implementation. Yes you can use a good code for beginners
ServerSocket
- multi thread server socket demo
MultiThreaded_Socket_Server_Client
- A working examples of multi threaded server and client application using java sockets. each time a client tries to connect to server, a new thread is started to handle the client. it is a application to draw on a board by all the clients co
vc_ftpserver
- 它可以同时接受多个ftp连接(多线程)并具有大部分的一些商业ftp服务器的功能。服务器支持所有基本的ftp命令并提供给用户简单的管理接口,支持虚拟目录。-It can also accept multiple ftp connections (multi-thread) and have most of the functions of some commercial ftp server. Server supports all the basic ftp commands and provi
server.tar
- Unix平台下即时通信系统开发服务器端程序。包括socket套接字的建立与侦听,以及多线程方式处理客户端socket发送的请求。-The community software run in UNIX platform,include building and listening socket,and using thread to reply client`s request.
1
- 用VC++6.0编写Proxy服务器 一. 原理 本程序的结构原理如下: 对于每一个用户的请求(Internet 请求,由浏览器发出),本程序将启动两个线程,一个把本地用户的请求数据发送到远程的Internet主机,另一个线程把远程主机的回应数据发送到本地请求用户。 二. 主要函数 UserToProxyThread ( void * pParam ) :它是用来把本地用户请求数据发送到远程主机的,起服务器线程角色。当接
TCP-server-thread
- TCP并发服务程序,支持多客户端连接,TCP必不可少的程序源码-TCP server code
NIO-Socket(server-and-client)
- jdk供的无阻塞I/O(NIO)有效解决了多线程服务器存在的线程开销问题,但在使用上略显得复杂一些。在NIO中使用多线程,主要目的已不是为了应对每个客户端请求而分配独立的服务线程,而是通过多线程充分使用用多个CPU的处理能力和处理中的等待时间,达到提高服务能力的目的。 client多线程请求server端,server接收client的名字,并返回Hello! +名字的字符格式给client。当然实际应用并不这么简单,实际可能是访问文件或者数据库获取信息返回给client。-jdk f
thread-pool
- 主要是讲线程池的使用,也是基于SOCKET 的客户端和服务端的网络编程。-Stresses the use of thread pool is also based on the SOCKET client and server network programming.
server
- 局域网多线程并发服务器,采用线程分离服务多客户端,使用小型数据库sqlite3进行数据存储;-LAN multithread concurrent server thread was used to separate service multiple clients, use SQLite3 for data storage
socket-server-socket-serve
- 这是一个关于各种IO模型的socket server实现与测试。 这里采用多种模型实现了一个TCP ECHO服务器,将client发送的内容echo回去。 client每秒会发送一次请求,server保持并发连接并进行相应。 现已实现的模型: base: 最原始的echo服务器 thread: 多线程模型 select: select模型 poll: poll模型 epoll: epoll模型 参数 修改src/clients.sh 可以生成指定数量的client 修改