搜索资源列表
tcp-ipayixidailv
- 一个简单的TCP客户端程序流程 1、使用WSAStartup()初始化WinSock库。 2、使用socket()创建一个IPPROTO_TCP SOCKET。 3、使用gethostbyname()/gethostbyaddr()获取主机信息。 4、使用connect()和我们创建的套接字连接服务器。 5、使用send()/recv()发送和接收数据,直到我们的TCP会话结束。 6、使用closesocket()关闭套接字连接。 7、使用WSACleanup()释放
ZYBSocket(tcp)
- 异步tcp类库 很好用 c#源代码 可以用在你的.net程序中 -asynchronous tcp library is useful c # source code can be used in your. Net procedure
bacnet-stack-0.5.4
- BACnet协议栈开源代码,应用在嵌入式平台中。-BACnet open source protocol stack for embedded systems, Linux, and Windows http://bacnet.sourceforge.net/ Welcome to the wonderful world of BACnet and true device interoperability! About this Project -----------
chat
- 基于Qt4的网络聊天程序,Qt4的类库实现,Qt可实现跨平台,一次编写到处编译。-The Chat Program,which is based on the Qt4 Class Library.
XSTUNT_server
- XSTUNT函数库,做了在 "Characterization and Measurement of TCP Traversal through NAT and Firewalls" 中所述的"STUNT #2"方法,提供了程序员一些简单的函数以实现TCP穿透NAT的功能。此为服务端函数库-Library XSTUNT done in the " Characterization and Measurement of TCP Traversal through NAT and Firew
socket
- 跨平台C++ 功能全面的Socket类库,支持TCP,UDP,限速-Cross-platform C++ full-featured Socket library, support TCP, UDP, speed limits, etc.
modbus_sim
- 模拟MODBUS主站、从站,包括TCP • mod_RSsim76exe.zip - Demo executable v7.6 • mod_RSsim7_4b.zip - mode_RsSim V 7.4b source • mylib.zip - Source : (library needed to compile) -Simulator for Modbus slaves over RS232/RS485 and TCP/IP
async-0.4.tar
- linux下的异步通信库 支持TCP和UDP异步通信 编译和使用前先读readme.-linux asynchronous communication library under TCP and UDP support asynchronous communication and use of the compiler before reading readme.
RawTCP-IP
- Raw TCP/IP类库,含ping,ipconfig,TcpServer,UdpScaner,Udpserver等内容-Raw TCP/IP library, including ping, ipconfig, TcpServer, UdpScaner, Udpserver etc.
tcp_comm
- 这是应用于公司某金融软件中的TComm库源代码,采用C++,提供了对于TCP通讯的封装-This is used in the company of a financial software TComm library source code, using C++, provides a package of communications for the TCP
sock_serv.tar
- 使用libevent实现的一个tcp服务器,客户端,配置文件,以及一些传输的数据使用libxml库-Libevent achieved using a tcp server, client, configuration files, as well as some of the data transmission libxml library
XSTUNT_client_win32_linux
- XSTUNT函数库,做了在 "Characterization and Measurement of TCP Traversal through NAT and Firewalls" 中所述的"STUNT #2"方法,提供了程序员一些简单的函数以实现TCP穿透NAT的功能。此为客户端函数库。-Library XSTUNT done in the " Characterization and Measurement of TCP Traversal through NAT and Fire
TCP
- 两个动态库是封装好了的TCP通讯库,使用了线程来发送和接收。-Two dynamic library is a good package of TCP communications library, used to send and receive threads.
Tcpip
- TCP/IP的动态链接库,内含服务器和客户端,可以直接使用-TCP/IP, dynamic link library that contains the server and the client can directly use the
AppServerCtrl
- 封装的select模式的底层网络通信库,非常好用,消息基于回调模型,实现了服务端客户端都可使用的网络部分,还有定时器功能,压缩,加解密-Package select models underlying network communication library, very easy to use, information-based callback model, the client realized the server can use the network, and there are
Multitou1
- tcp library over udp
IOCP
- ICOP服务器的开发,并提供源代码,动态库,调用DEMO(包含VC,C#,Delphi7)。 阅读源代码最好对C++,TCP/IP,socket编程,多线程和MFC有一定了解。 程序编译环境:Visual C++ 6.0。运行在Windows NT/2000或以上版本系统。-ICOP server development, and provide the source code, dynamic library, called DEMO (VC, C#, Delphi7).
UPLOAD
- MM1:MM1 queue simulation MG1: MG1 queue simulation NETWORKQUEUE:电话网络的queue simulation socket:一个数据库,图书馆和用户三者通过UDP或者TCP链接,互通消息的socket。 -MM1:MM1 queue simulation MG1: MG1 queue simulation NETWORKQUEUE:电话网络的queue simulation socket:database,
tcp
- 利用TCP/UDP网络通信支持库在多网卡下搭建多端口TCP服务器 -Using TCP/UDP network communication in a multi-card support library to build multi-port TCP server under
Socket-tcp-udp
- 网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面