CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - udp 服务端

搜索资源列表

  1. UDP_MULBrodast

    0下载:
  2. 这是一个基于UDP协议的广播通信程序。本程序含客户端和服务端。-This is a protocol based on UDP broadcast communication program. This procedure with the client and server.
  3. 所属分类:Communication

    • 发布日期:2017-05-03
    • 文件大小:898038
    • 提供者:王瑞
  1. tcpudp

    0下载:
  2. 监听TCP、UDP端口,查看进程及服务.-TCPUDP port monitor to see the process and services.
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-05
    • 文件大小:300328
    • 提供者:sworld
  1. WinSockUDP

    0下载:
  2. winSockUdp程序编写了UDP客户端和服务端案例,同时也有TCP通讯连路例程,希望对网络编程用户有所帮助。-winsockudp include UDP client and UDP server example
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-25
    • 文件大小:66629
    • 提供者:lzy
  1. UDPCommuniction

    0下载:
  2. Udp协议的运用,通过Udp协议实现客户端和服务端的通讯。-Udp use agreement, through the Udp protocol client and server communication.
  3. 所属分类:TCP/IP Stack

    • 发布日期:2017-04-28
    • 文件大小:115560
    • 提供者:gag
  1. UdpSvr

    0下载:
  2. 该程序是实现UDP方式的客户端,连接服务端,然后返回消息-The program is the way to achieve UDP client, client connection, and then return to the news
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-28
    • 文件大小:114694
    • 提供者:yongheng
  1. UdpClient

    0下载:
  2. 该程序实现UDP方式的客户端功能,通过连接服务端,然后返回消息-The realization of the program the way the client UDP function, through the connection server, and then return to the news
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-29
    • 文件大小:109525
    • 提供者:yongheng
  1. P2P

    0下载:
  2. P2P中利用UDP穿透NAT的原理与实现.内附P2P的客户端和服务端程序,对学习P2P实现的朋友也会很有帮助.-P2P penetrate NAT using UDP and the realization of the principle. Containing a P2P client and the server process, the achievement of learning P2P friends will be very helpful.
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-24
    • 文件大小:28862
    • 提供者:California
  1. 5660UDPDemo

    0下载:
  2. 用C++编写的UDP通信技术,包括客户端和服务端-Using C++ to prepare the UDP communication technologies, including client and server
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-23
    • 文件大小:7326170
    • 提供者:xsf
  1. vbchat

    0下载:
  2. 一个用vb编的聊天程序。本程序基于udp协议,分为服务端和客户端。-Vb for a chat with the procedure. Udp agreement based on this procedure is divided into server and client.
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-30
    • 文件大小:6418
    • 提供者:506
  1. server_client

    0下载:
  2. 一个基于UDP方式的客户-服务端示例程序。用的是文档/视结构实现。 解压后,有两个目录,分别是客户端程序与服务端程序,是一个好的网络编程入门学习实例,简单,全面-UDP-based codes for service client program. Using a document/view structure. After decompression, there are two directories, which are client and services, is a good
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-05-19
    • 文件大小:5589510
    • 提供者:王正家
  1. UDP_delphi

    0下载:
  2. delphi实现UDP通讯,可以做服务端和客户端使用-UDP communications to achieve delphi
  3. 所属分类:Communication

    • 发布日期:2017-03-29
    • 文件大小:332899
    • 提供者:侯永平
  1. p2pudp

    1下载:
  2. VC++ 局域网UDP穿透NAT(P2P)的原理及源代码,论坛上经常有对P2P原理的讨论,但是讨论归讨论,很少有实质的东西产生(源代码),这里就用自己实现的一个源代码来说明UDP穿越NAT的原理。截图分别演示了服务端和客户端的运行状态图。 -VC++ LAN UDP penetrate NAT (P2P) principle and source code, forums, often the discussion of the principle of P2P, but the discu
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:20521
    • 提供者:jiangjihai
  1. UdpSrv

    0下载:
  2. 基于UDP的服务端测试程序源代码,基于VC6.0编写,可直接运行-UDP-based server-side test program source code, based on VC6.0 preparation, can be directly run
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-03-27
    • 文件大小:5215
    • 提供者:lbh
  1. talkroom

    0下载:
  2. 1.其中基于UDP做的聊天室,利用UDP广播,只需在局域网里启动exe即可工作,无需服务器端。开发思想:在“上线”后启动一个线程循环recv接受广播来的信息。"send"按钮广播信息。 2.基于TCP的聊天室。采用了WSAAsyncSelect无阻塞消息模式。先启动服务ChatRoomServer.exe 在启动server后,服务器端listen来自客户端的信息,当客户端connection后,服务器端accpet与客户端建立连接后触发消息函数 OnServerAccept。OnSe
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1856730
    • 提供者:zhuceyong
  1. 4w

    0下载:
  2. UDP客户端与服务端的通讯测试程序,可以用为学习UDP编程的参考-UDP -test procedure can be used for programming learning UDP reference
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:34351
    • 提供者:kenao
  1. UdpServer

    0下载:
  2. 这是一个UDP通讯的C#源代码,它是作为服务端而使用-This is a UDP communication C# source code, which is used as a service-side
  3. 所属分类:.net

    • 发布日期:2017-04-07
    • 文件大小:33657
    • 提供者:刘少鹏
  1. video_cap

    0下载:
  2. 采用udp协议实现的客户端和服务端的互发消息,传输视频功能-Udp protocol implementation with client and service side of each other news of their impending transfer video capabilities
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-19
    • 文件大小:5503922
    • 提供者:冯旭飞
  1. UDPtime

    0下载:
  2. TIME服务的UDP客户端实现,主要文件:UDPtime.cpp包含了实现了time服务的UDP客户代码-TIME Service UDP client-side implementation of key documents: UDPtime.cpp contains the realization of the time of services UDP client code
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-10
    • 文件大小:2533976
    • 提供者:winni
  1. UDPtimed

    0下载:
  2. time服务的UDP服务器端代码实现 主要文件UDPtimed.cpp实现了服务器端time UDP协议的实现-time services, UDP server-side code to achieve the main document UDPtimed.cpp implements server-side time UDP protocol to achieve
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-10
    • 文件大小:2534370
    • 提供者:winni
  1. UdpClient-UdpServer

    1下载:
  2. 用udp协议通讯示例--包括udp客户端与服务端的源代码。-Examples using udp protocol communications- including the udp client and server source code.
  3. 所属分类:Windows Develop

    • 发布日期:2014-07-26
    • 文件大小:4383
    • 提供者:
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 21 »
搜珍网 www.dssz.com