Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - TCP/UDP
Search - TCP/UDP - List
一个很好的winsock tcp/ucp示例,相信看了肯定收益颇丰-a good example for winsock about tcp/udp
Update : 2024-05-20 Size : 4135936 Publisher : chenshapin

Linux环境中NS2TCPUDP ns2下仿真有线网络的延时、抖动、吞吐量的实验源码-Under the Linux environment NS2TCPUDP ns2 simulation wired network delay, jitter, throughput experimental source
Update : 2024-05-20 Size : 359424 Publisher : 李东国

TCP/UDP传输协议的程序.要配合服务端和客户端一起使用才可以-The TCP/UDP transport protocol programs.Use them with the Server and the Client.
Update : 2024-05-20 Size : 3072 Publisher : 曾建

DL : 0
tcp-udp 通信协议功能对比 精华优化-tcp-udp Function Comparison
Update : 2024-05-20 Size : 23552 Publisher : simon

DL : 0
tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Update : 2024-05-20 Size : 2048 Publisher : 闛靚

非常实用的TCP、UDP、IP开发工具,可以用在Windows平台!-A very useful TCP, UDP, IP development tools, can be used in Windows platform!
Update : 2024-05-20 Size : 258048 Publisher : liangfei

TCP/UDP协议的实时监听 运行环境 Delphi7 -TCP/UDP protocol, real-time monitoring operating environment Delphi7
Update : 2024-05-20 Size : 205824 Publisher : wenll998

DL : 0
本书是一本非常实用的学习C#网络高级应用编程的教材。主要涉及TCP编程、UDP编程、P2P编程、SMTP和POP3编程、网络加密与解密、多媒体编程等内容-This book is a very useful learning C# network programming materials for advanced applications. Mainly related to programming TCP, UDP programming, P2P program, SMTP and POP3 programming, network encryption and decryption, multimedia programming, etc
Update : 2024-05-20 Size : 6025216 Publisher : huanghf

DL : 0
TCP.UDP协议的聊天程序源代码,介绍了客户端和服务端的相关代码,并有相关注释-TCP.UDP protocol chat program source code, introduced the client and service side of the relevant code, and relevant comments
Update : 2024-05-20 Size : 70656 Publisher : 张力

TCP-UDP通信,PPT中详细讲述了TCP、UDP相关技术,并详细讲解了windows socket相关编程函数,并带有socket编写的TCP通信程序。-TCP-UDP communication, PPT in detail the TCP, UDP related technologies, and explain in detail the windows socket programming related functions, and written with a TCP socket communication program.
Update : 2024-05-20 Size : 1118208 Publisher : 李正交

DL : 1
本软件采用Linux系统,以QT为开发语言,在实现了基本通信功能的基础之上,继续将软件进行交叉编译,并将其成功移植到ARM9开发板上。本软件没有服务器,只有单一的客户端,软件启动时通过使用UDP协议向255.255.255.255这个广播地址发送一个经过编码的广播包建立在线用户列表;本软件可以在XP系统、Ubuntu系统和ARM9开发板运行,使用了Tcp/Udp、Socket等技术;软件实现了基本的修改用户名、一对一聊天和文件的传输功能。 -The software deliberately adopted a Linux system to QT for the development of language, in the realization of the basic communication function basis, continue to cross-compile the software and successfully transplanted to the ARM9 development board. This software is not the server, only a single client, the software starts by using the UDP protocol to send to the broadcast address 255.255.255.255 that an encoded broadcast packets to establish a list of online users This software can be XP system, Ubuntu system and ARM9 development board run, using the Tcp/Udp, Socket and other technology software changes the basic user name, one to one chat and file transfer capabilities.
Update : 2024-05-20 Size : 140288 Publisher : stone

net progromming, TCP, UDP, Server
Update : 2024-05-20 Size : 2236416 Publisher : 710071

DL : 0
一个TCP/UDP发送接收文件的例子程序-tcp、udp transform file
Update : 2024-05-20 Size : 27648 Publisher : larry

TCP UDP高级编程:一个VC++服务端程序代码TCP UDP high-level programming: a VC + + server-side code-TCP UDP high-level programming: a VC++ server-side code
Update : 2024-05-20 Size : 40960 Publisher : ib

TCP\UDP网络开发编程,实现了UDP的客户端,只是实现了UDP通信原理,功能简单清晰,非常适合学习-It s a developments of a TCP\UDP, and implemented a client of UDP. It s simple,clear,and very good at study.
Update : 2024-05-20 Size : 206848 Publisher : 九洲

tcp,udp连接代码,VB源码。演示了用tcp通讯时客户端和服务器端的程序源码。udp之间的通讯源码-VB 源码
Update : 2024-05-20 Size : 1874944 Publisher : kelink

uCOStcp
DL : 0
lpc1768 的tcp 实现,内嵌ucos-lpc1768' s tcp implementation, embedded ucos
Update : 2024-05-20 Size : 971776 Publisher : 李凯

这个是关于tcp/udp 和并发服务器的网络编程列子,给大家看看!-This is about the tcp/udp and concurrent server network programming Liezi, for everyone to see!
Update : 2024-05-20 Size : 11264 Publisher : oyj

DL : 0
vb开发的类似QQ的聊天软件,采用TCP-IP协议,请大家测试-vb development of a similar chat software QQ, using TCP-IP protocol, please test
Update : 2024-05-20 Size : 14336 Publisher : 卓建超

DL : 0
关于TCP UDP开发的一些PPT资料,以及网络开发的VC文档,欢迎下载参考-On the development of some of the PPT TCP UDP data, and web development VC documents, please download the reference
Update : 2024-05-20 Size : 4361216 Publisher : 李丽
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.