CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - udp socket programming
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - udp socket programming - List
[
Linux-Unix
]
Socket_UDP1.00
DL : 0
udp协议下套接字编程-udp socket programming
Date
: 2025-07-16
Size
: 14kb
User
:
卢凤晖
[
TCP/IP stack
]
全面掌握VisualC#实现UDP协议
DL : 0
看后对socket编程会有很大的提高,朋友们一定不要错过!-socket programming will be greatly improved, and friends must not miss!
Date
: 2025-07-16
Size
: 218kb
User
:
雷方
[
Internet-Network
]
tcpdup-program
DL : 0
TCP与UDP套接字编程,用C语言开发的-TCP and UDP socket programming, C language development
Date
: 2025-07-16
Size
: 4kb
User
:
许黎
[
Windows Develop
]
tcp[1].udp高级编程
DL : 0
Socket高级编程,TCP和UDP都可以-Socket Programming, TCP and UDP can be
Date
: 2025-07-16
Size
: 3mb
User
:
张伟
[
Internet-Network
]
udpsocket
DL : 0
用C语言实现的UDP协议的socket编程,请大家研究研究-C language of the UDP socket programming, please studies
Date
: 2025-07-16
Size
: 128kb
User
:
raul
[
Internet-Network
]
UDP_CS
DL : 0
利用socket编程,UDP协议,实现数据收发-The use of socket programming, UDP protocol, data transceiver
Date
: 2025-07-16
Size
: 2.22mb
User
:
陈兴锋
[
ICQ-IM-Chat
]
udp
DL : 0
最基本的聊天程序,UDP实现,Socket,便于零基础者初步学习网络套接字编程(注释清晰)-Basic chat program, UDP achieve, Socket, zero basis to facilitate initial learning network socket programming (Note clear)
Date
: 2025-07-16
Size
: 2kb
User
:
刘文旭
[
TCP/IP stack
]
Network
DL : 0
该程序利用MFC 实现WINDOWS下的SOCKET 编程,包括了TCP以及UDP 的不同连接方式-The program using MFC under WINDOWS realize SOCKET programming, including TCP and UDP connections of different
Date
: 2025-07-16
Size
: 36kb
User
:
sunsee
[
ICQ-IM-Chat
]
MSocUdp
DL : 0
这个程序是udp socket编程的范例,支持端口到端口的即时聊天,也可以是局域网内的广播通信 /////////////////////////////////// The MSocUdp sample is a minimal dialog box-based MFC application that demonstrates how to use the CAsyncSocket class to send and receive directed datagram or broadcast datagram over User Datagram Protocol (UDP). -This procedure is an example of udp socket programming in support of port-to-port real-time chat, can also be a local area network within the broadcast and communications //////////////////////// /////////// The MSocUdp sample is a minimal dialog box-based MFC application thatdemonstrates how to use the CAsyncSocket class to send and receive directeddatagram or broadcast datagram over User Datagram Protocol (UDP).
Date
: 2025-07-16
Size
: 4.21mb
User
:
h
[
Internet-Network
]
UDP
DL : 0
socket编程 : 一个基于UDP协议的通讯实例-socket programming: a communication protocol based on UDP example
Date
: 2025-07-16
Size
: 9kb
User
:
小君
[
TCP/IP stack
]
net_program_design
DL : 0
一本介绍网络编程的书籍,首先介绍了网络编程的接口、注意实现等,然后具体详解了TCP、UDP、socket等编程。-Introduced a network programming books, first introduced the network programming interfaces, such as attention to achieve, and then explain the specific TCP, UDP, socket programming, etc..
Date
: 2025-07-16
Size
: 616kb
User
:
张勇
[
Windows Develop
]
UDP
DL : 0
基于UDP的简单收发演示,使用Windows API socket编程-The easy to send and receive UDP-based demonstration of the use of Windows API socket programming
Date
: 2025-07-16
Size
: 66kb
User
:
Yang
[
Internet-Network
]
Socket
DL : 0
内有UDP点对点聊天及TCP.UDP高级编程等相关的详细代码。从事网络编程开发及学习者值得借鉴。-Within the UDP peer-to-peer chat and have TCP.UDP high-level programming code and other related details. Engaged in the development of network programming and learners to learn.
Date
: 2025-07-16
Size
: 291kb
User
:
wangxh
[
Multimedia program
]
socket
DL : 0
编译好的网络通信的socket编程实例,TCP通信与UDP通信-Network compiled examples of socket programming, TCP and UDP communication communication
Date
: 2025-07-16
Size
: 27kb
User
:
水城男孩
[
CSharp
]
udp
DL : 0
it is about socket programming in client side in windows.
Date
: 2025-07-16
Size
: 36kb
User
:
saeid zamani
[
Internet-Network
]
socket
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
Date
: 2025-07-16
Size
: 2kb
User
:
闛靚
[
Internet-Network
]
visualc-udp-socket
DL : 0
基于 c# 的socket编程源代码 最终实现了UDP的数据传输-C# for socket-based programming source code eventually the UDP data transmission
Date
: 2025-07-16
Size
: 122kb
User
:
maguang
[
Internet-Network
]
VC_SocketUdp
DL : 0
简单的 socket编程 UDP通信模式-UDP socket programming simple communication mode
Date
: 2025-07-16
Size
: 11kb
User
:
贺长富
[
TCP/IP stack
]
windows-Udp-socket
DL : 0
Windows下的socket编程源码,完整的工程,编译通过,无需更改即可使用-Socket programming under Windows source code, complete the project, compile, you can use without having to change
Date
: 2025-07-16
Size
: 1.15mb
User
:
曹乐
[
Internet-Network
]
UDP-socket-programming
DL : 0
UDP socket编程方面很好的材料,介绍了编程的框架,并给出了例子-UDP socket programming good guidance material
Date
: 2025-07-16
Size
: 275kb
User
:
王力敏
«
1
2
3
4
5
6
7
8
9
10
...
17
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.