搜索资源列表
MTServerSrc
- 一个多线程实现的TCP服务端 listen, 在accept一个请求后,再启动一个线程来处理对应的socket-a multithreaded achieving TCP server listen, accept a request and then start a thread to handle the corresponding socket
MTSClientSrc
- 于多线程tcp服务的对应的客户端代码,主要实现发送命令到服务器然后再出来从服务器端返回的命令-in multithreaded tcp services, the corresponding client code, the main sending commands to the server and then out from the server to return to the order
windowsTCP
- 本源文件是tcp的连接程序,可以当服务端或客户端,包括连接、收发数据等功能,在所有过程出错处理都较好。-origin of the document is tcp connections and can be a server or client, including connections, sending and receiving data and other functions, in all processes are better error handling.
TCPf
- 用c++写的TCP 聊天程序服务端-used to write the TCP-service chat program.
ServerSocket_demo
- 非常好的Socket多线程编程例子,可用作客户端或者服务端,可以实现TCP或者UDP通信,可以同时创建n个线程-very good example of multi-threaded programming, can be used as a client or server, can achieve a TCP or UDP communications, it will also create threads n
NetworkApp
- 范例TCP协议的 客户端和服务端代码
ChatServer
- windows下VC开发的TCP聊天程序的服务端程序
Client
- TCP/IP网络聊天客户端,对服务端发起socket请求,服务器端接收后实现聊天数据互发。
doorFile
- 基于socket的一个后门木马程序:客户端与服务器是tcp/ip连接,在客服端可以执行服务端的操作
server
- 基本TCP服务端操作,包括socket参数配置,连接,读取数据,以及日志记录等
12
- Internet是以客户机/服务器模式进行工作的,服务器在某些端口上开启一些网络服务,等候客户端请求的到来。传输层提供的网络服务有TCP服务和UDP服务两种。传输层在网络体系结构中是承下启上的一层。可以把传输层下面的几层称做传输服务提供者(transport service provider),上面的几层称做传输服务使用者(transport service user)。传输层处于中间,它既使用传输服务提供者提供的服务,又为传输服务使用者提供服务。传输层是网络体系结构中至关重要的一层,所以深入理
QQProject
- 在Internet上的聊天室程序一般都是以服务器提供服务端连接响应,使用者通过客户端程序登录到服务器,就可以与登录在同一服务器上的用户交谈,这是一个面向连接的通信过程。因此,程序要在TCP/IP环境下,实现服务器端和客户端两部分程序。
TCP-SOCKET-Chat-Room-Source
- 一个用cSharp编写的聊天室,不算完善,客户端需要硬编码服务端的地址
TCP-server-client
- 在服务端运行tcp.exe, 在另一台与之在同一network的客户端上运行tcplnk.exe, 规定相同的port, 在服务端上begin, 在客户端上输入服务器的IP地址,connect, 客户端上编辑框中的字符便可send到客户端的编辑框中。-on the server running tcp.exe, another in the same network with the client running on tcplnk.exe require the same port, on t
SocketBaseClass
- 一个封装良好、稳定的SOCKET基类(TCP),不使用MFC,可初始化为服务端或客户端。-a good, stable base class SOCKET (TCP), do not use MFC, initialize to the server or client.
VB的TCP聊天工具
- VB的TCP聊天工具将服务端与客户端分开编写,使用机器需先打开服务端,再在远程机器使用客户端连接-VB TCP chatting tool services and client-prepared separately, the use of machines need to open the server, then the remote machine using the client
TCP实现客户服务器聊天程序
- 操作系统课程设计任务书 一、设计题目:多机进程通信 应用Socket进程通信技术编写聊天室程序,实现基于服务器的并发多机信息转发。如果各客户端在线则可以实时聊天、发送接收文件,如果某客户端离线,则发送给他的消息可由服务器端进行内容缓存,待重新连线后可以自动接收通过服务器转发的信息或文件。缓存与转发的控制算法可参考操作系统课程中生产者消费者进程同步方法、缓冲池技术等相关理论。 二、设计思路和功能的详细描述 采用TCP协议,所以属于客户机/服务器模式,因此需要聊天服务
TCP数据转发服务程序源码
- TCP数据转发服务器源码,该程序服务器监听两个连接。一旦连接建立后,就把两个客户端的数据相互转发。克服了两个私网IP电脑无法相互传送数据的难题。该代码在VC6.0环境下编译
tcp服务湍与客户端源码
- 这是一个自己对TCP API的封闭,再对此封闭进行界面实例应用,通过VC6测试,大家放心使用。
tcp/udp
- 基于tcp/udp协议的服务端和客服端的通信示例