Welcome![Sign In][Sign Up]
Location:
Search - tcp socket server

Search list

[TCP/IP stackTCP Web Server

Description: 模拟TCP协议建立一个web服务器,通过把数据装入TCP套接字,可以向客户端发送.html, .jpg, .jif等格式的文件。-simulated TCP establish a web server, data loading TCP socket, can be sent to the client. Html. Jpg,. Jif format documents.
Platform: | Size: 8444 | Author: 木头 | Hits:

[Internet-Networkwindows socket编程

Description: 首先Server程序创建两个socket: 分别为 TCP socket(使用命令行参数指定端口号) UDP socket(UDP端口号自定义,使用宏定义写在程序里,必须大于1024)。 server端在这两个端口上侦听连接,接受来自客户端的服务请求。
Platform: | Size: 27503 | Author: rita552129 | Hits:

[TCP/IP stackTCP Web Server

Description: 模拟TCP协议建立一个web服务器,通过把数据装入TCP套接字,可以向客户端发送.html, .jpg, .jif等格式的文件。-simulated TCP establish a web server, data loading TCP socket, can be sent to the client. Html. Jpg,. Jif format documents.
Platform: | Size: 8192 | Author: 木头 | Hits:

[TCP/IP stackJBSocketServerTestSource

Description: Testing TCP and UDP socket servers using C# and .NETWhen you re developing a TCP/IP server application it s easy to test it poorly. It s easy to fire requests into a server, check the responses and assume that s enough. Even if you re testing using the actual production client application you may find that you are failing to fully test the server under heavy load or unusual network conditions. You may be using two or more machines, but your development network probably doesn t cause the kind of packet fragmentation and delays that you might encounter in the wild. Often when testing in the development environment your server only ever receives complete, distinct messages, and this can lead novice developers to assume that this is how it always is. As we pointed out in a previous article, the server developer is always responsible for breaking up the TCP byte stream into protocol specific chunks.
Platform: | Size: 110592 | Author: 王小文 | Hits:

[Windows Mobilece-tcp

Description: wince下socket编程的例子,包括server端和client端-wince under socket programming examples, including server and client-side
Platform: | Size: 58368 | Author: pknife | Hits:

[Internet-Networktcpudpserver

Description: 首先Server程序创建两个socket,分别为 TCP socket(使用命令行参数指定的端口号)和UDP socket(UDP端口号自定义,使用宏定义写在程序里,必须大于1024)。server端在这两个端口上侦听连接,接受来自客户端的服务请求。客户端根据提示进行操作。-procedures created two socket, for TCP socket (using the command line parameters designated ports), and UDP socket (UD P-defined port, the use of write-in process definition, must be greater than 1024). In this terminal server ports on the two monitors connected to accept from the client service requests. According to client instructions.
Platform: | Size: 155648 | Author: 李皓雯 | Hits:

[TCP/IP stackSOCKET-TCP

Description: SOCKET多线程,使用TCP连接,当有一个连接请求时候,建立一个线程。共有两个文件,一个Server,还有一个是Client-SOCKET multithreading, the use of TCP connections, when a link request, the establishment of a thread. A total of two documents, one Server, there is a Client
Platform: | Size: 1200128 | Author: 的三分 | Hits:

[TCP/IP stackALARMSERVER

Description: VB写的基于TCP/IP写的SOCKET通信程序 用于车辆监控的报警方案管理-VB was based on TCP/IP Socket Communications written procedures for the police vehicle monitoring program management
Platform: | Size: 273408 | Author: 摄氏37度 | Hits:

[TCP/IP stackSocket

Description: the program is socket program of TCP client/Server structure.
Platform: | Size: 1833984 | Author: keith | Hits:

[Internet-Networklinux-socket

Description: 本Linux网络应用程序采用客户-服务器模型,并发型交互。在OSI参考模型的传输层,通过调用TCP套接字(Socket)的各种函数,使服务器和各个客户端之间建立快速可靠的连接,处理客户机发送的数据,实现流量检测与控制。-The Linux web applications in client- server model, and cross-hair. OSI reference model in the transport layer, by calling the TCP socket (Socket) of a variety of functions, so that the server and the client between the fast and reliable connections to deal with the client to send data, the achievement of traffic detection and control.
Platform: | Size: 37888 | Author: ll | Hits:

[Linux-Unixsocket

Description: 提供了非阻塞的客户端和服务器端通信的实例程序。用linux下的C语言实现。-Provides a non-blocking client and server-side examples of communication procedures. Under linux using C language.
Platform: | Size: 10240 | Author: jidong | Hits:

[TCP/IP stackSOCKET

Description: TCP/IP编程的基础--socket 包括C/JAVA TCP/UDP 服务端和客户端 六套代码,供新人学习、老人测试联调用 支持win32 Linux(JAVA版本的需要自己新增JDK)-TCP/IP programming basis- socket including C/JAVA TCP/UDP server and client six sets of code for the new study, elderly test joint call to support win32 Linux (JAVA version of the need to add JDK)
Platform: | Size: 9216 | Author: 冯进荣 | Hits:

[xml-soap-webserviceWTcpSrv

Description: TCP/IP socket Server,can open xml file and sends the data to all clients
Platform: | Size: 331776 | Author: frank | Hits:

[Internet-NetworkTCP-SOCKET-Chat-Room-Source

Description: 一个用cSharp编写的聊天室,不算完善,客户端需要硬编码服务端的地址-CSharp prepared using a chat room, which is not perfect, the client needs of hard-coded server address
Platform: | Size: 1354752 | Author: 李亚明 | Hits:

[Internet-Networktcp-server-client

Description: 一个用socket实现服务器客户端的建立例子(tcp)-A socket server with the establishment of client examples (tcp)
Platform: | Size: 2348032 | Author: 邹伟 | Hits:

[Internet-NetworkTCPServer1

Description: VC 2008网络编程的例子,TCP socket Server例子之一。-VC 2008 example of network programming, TCP socket Server examples.
Platform: | Size: 80896 | Author: Tony | Hits:

[Internet-Networksocket-server-socket-serve

Description: 这是一个关于各种IO模型的socket server实现与测试。 这里采用多种模型实现了一个TCP ECHO服务器,将client发送的内容echo回去。 client每秒会发送一次请求,server保持并发连接并进行相应。 现已实现的模型: base: 最原始的echo服务器 thread: 多线程模型 select: select模型 poll: poll模型 epoll: epoll模型 参数 修改src/clients.sh 可以生成指定数量的client 修改src/base.cpp 中的MAX_CLIENT_NUM参数调整server最大服务数 修改src/base.cpp 中的CLIENT_INTERVAL参数调整client发包间隔 修改Makefile 中的DEBUG参数确定是否输出调试信息 使用方法(This is a socket server implementation and testing of various IO models. Here, a variety of models are used to implement a TCP ECHO server that returns the contents sent by echo back to client. Client sends a request per second, and server maintains concurrent connections and performs them accordingly. The model has been implemented: Base: the most primitive echo server Thread: multithreaded model Select: select model Poll: poll model Epoll: epoll model parameter Modify src/clients.sh to generate a specified number of client Modify the MAX_CLIENT_NUM parameter in src/base.cpp to adjust the maximum number of server services Modify the CLIENT_INTERVAL parameter in src/base.cpp to adjust the client contract interval Modify the DEBUG parameter in the Makefile to determine whether output debugging information is out Usage method)
Platform: | Size: 11264 | Author: JIE2012 | Hits:

[Internet-Network基于网络的Tcp通讯Server服务器端和Client客户端

Description: Windows编程基于Tcp通讯的 Server服务器端和 Client客户端,使用一台电脑启动 Server端,另一台电脑启动Client客户端 两端能够互相发送消息并能接收看到(Windows programming, based on Tcp communication Server server and Client client, using a computer to start the Server side, another computer starts Client client, both ends can send messages to each other, and can receive to see)
Platform: | Size: 5833728 | Author: 阳光小鹏 | Hits:

[Com Port套接字程序(TCP)+

Description: 套接字程序(TCP)+ VC MFC SOCKET TCP CLIENT SERVER 通讯(VC MFC SOCKET TCP CLIENT SERVER Commuincation)
Platform: | Size: 63995904 | Author: wxdgk | Hits:

[Internet-NetworkTCP_SERVER

Description: 实现TCP,Socket服务端,一个简单的小程序(To realize the TCP Socket server, a simple small program)
Platform: | Size: 251904 | Author: MrWonderA | Hits:
« 12 3 4 5 6 7 8 9 10 ... 40 »

CodeBus www.codebus.net