搜索资源列表
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
sendfile
- 文件传输,局域网内客户端之间传输文件,TCP类库TcpListenerHelper TcpClientHelper TcpCommon-File transfers, LAN file transfer between client, TCP library TcpListenerHelper TcpClientHelper TcpCommon
jamod-1.2rc1-src.zip
- 100 java实现modbus 从站、主站,This project represents a Modbus implementation in 100 Java. It can be used to implement Modbus masters and slaves in various flavors: Serial: ASCII, RTU (Master only), BIN IP: TCP,UDP The design of this library is
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 -----------
PIC18F66J60
- microchip的微芯TCP/IP协议栈实现的SNMP-microchip s tcp/ip stack------snmp
chat
- 基于Qt4的网络聊天程序,Qt4的类库实现,Qt可实现跨平台,一次编写到处编译。-The Chat Program,which is based on the Qt4 Class Library.
libmodbus-2.0.3.tar
- Modbus TCP Master/Slave communication library. Must be compiled with gcc compiler.
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
tcptool
- unix下c语言实现tcp连接函数库-unix under tcp connections c language library
net_engine
- 这个源码是实现IOCP功能的TCP服务器的通讯库。-This source is a function of the realization of IOCP server TCP communications library.
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
LanTalk
- 本程序设计分为服务器应用程序及客户机应用程序部分,采用Socket套接字库网络编程。(UDP)和(TCP/IP)相结合的连接方式,及解决了数据传输的时效性又能保证数据在传输的过程中不会丢失。另外程序采用多个线程来避免程序阻塞。具体设计思路及部分代码如下: 程序设计目的:首先就是完成课设任务啦(大二课设内容)其他目的: 1:练习使用套接字进行网络编程。 2:练习使用自定义消息。 3:练习多线程方面的编程思想。 4:练习使用各种控件。 -This procedure
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
TCP
- 两个动态库是封装好了的TCP通讯库,使用了线程来发送和接收。-Two dynamic library is a good package of TCP communications library, used to send and receive threads.
Socket-tcp-udp
- 网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面