搜索资源列表
TCP服务器端MANK
- 一个TCP/IP的服务器端,但是增加了列表显示以及对客户端标示管理!-A TCP/IP server program with list display and client management
tcp服务器端的源代码
- tcp服务器端的源代码,在vc环境下运行,
tcp
- windows 网络编程。tcp服务器端,客户段源代码。
TCP实现客户服务器聊天程序
- 操作系统课程设计任务书 一、设计题目:多机进程通信 应用Socket进程通信技术编写聊天室程序,实现基于服务器的并发多机信息转发。如果各客户端在线则可以实时聊天、发送接收文件,如果某客户端离线,则发送给他的消息可由服务器端进行内容缓存,待重新连线后可以自动接收通过服务器转发的信息或文件。缓存与转发的控制算法可参考操作系统课程中生产者消费者进程同步方法、缓冲池技术等相关理论。 二、设计思路和功能的详细描述 采用TCP协议,所以属于客户机/服务器模式,因此需要聊天服务
TCP数据转发服务程序源码
- TCP数据转发服务器源码,该程序服务器监听两个连接。一旦连接建立后,就把两个客户端的数据相互转发。克服了两个私网IP电脑无法相互传送数据的难题。该代码在VC6.0环境下编译
OPC+Server+for+Modbus.opc server 服务器源码
- opc server 服务器源码。该事例适合OPC研究者学习和开发,opc server source server. The case for researchers to learn and develop OPC
-M-Thread-TCP-Server
- 一个基于多线程的TCP 服务器,使用VC++ 6.0进行开发,对初学者理解原理十分有用。-A Multi-threaded TCP server, using VC++ 6.0 for development, the principle is very useful for beginners to understand.
TCP-SERVER
- TCP聊天服务器端程序,程序在VC6.0中调试通过-TCP chat server-side procedures, the procedures adopted in VC6.0 in debugging
TCP
- TCP聊天服务器客户端,用C#語言編寫,數據庫爲SQLSERVER-TCP
FileTrans-CS-S-TCP
- 基于网络接口的编程,分服务器和客户端,实现了文件的传送-Web-based programming interfaces, sub-server and client to achieve the transmission of the document
tcp
- tcp 通讯包含客户端和服务器端,Windows下的socket实现-tcp communication contains client and server, Windows under the socket to achieve
WINSOCK-TCP
- 基于winsock技术的局域网通讯程序,采用C/S模式,有服务器端和客户端,并能实现局域网内的简单即时通信。-Winsock-based local area network communications technology procedures, the use of C/S mode, there are server-side and client, and to achieve a simple LAN instant messaging.
tcp
- 控制台的服务器与客户端通信 包括流的应用-Console server and client communications, including the application of flow
EasyChat
- 这是用C#做的一个简易的Windows平台下的聊天软件,包括了客户端和服务端的全部源码,注释很详细,有兴趣学习.net应用开发的同学可以下载来学习学习。这个示例包含了了C/S架构软件开发的很多基础知识和思想。 功能包括群发,私聊,发送震动,收到消息发声,闪屏提示等等,大致类似于QQ的多人聊天会话功能。 涉及到的知识主要包括: 1. TCP/IP通信,包括TcpClient , TcpListener , Socket , NetworkStream等几个用于TC
MessageServer
- TCP服务器,用于控制组合体小车的运行,注释清晰方便修改(The TCP server is used to control the operation of the composite car, and the annotation is clear and convenient to modify)
RT-Thread下TCP并发服务器模型-多线程TCP服务器
- stm32 RT-Thread下 TCP并发服务器模型-多线程TCP服务器 实用型,不可多得,keil下编译(stm32 RT-Thread TCP concurrent server model - multi-threaded TCP server)
S7-200 SMART CPU Modbus TCP服务器端指令库(2)
- S7-200 SMART CPU Modbus TCP客户端指令库(4)(S7-200 SMART CPU Modbus TCP)
TCP
- 使用TCP函数初始化可向多个客户端VI发送数据的TCP服务器(Initialize the TCP server that sends data to multiple client VI using the TCP function)
tcp
- QT tcp服务器,可实现服务器和客户端的数据j交互(QT TCP server, which implements data J interaction between server and client)
linux下的多线程高并发tcp服务器
- 基于epoll的多线程TCP服务器 基于epoll,监听指定端口的TCP请求; TCP长连接、短连接分别使用不同的端口; 当接收到客户端的TCP短连接请求时,返回服务器ip地址、MAC地址;当接收到客户端的TCP长连接请求时,服务器接收连接,客户端周期性向服务器发送心跳; 支持多个客户端的并发TCP请求; 使用多线程技术,同时监听、提供服务; 设计服务器端和客户端的通信协议,使用JSON格式。