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

搜索资源列表

  1. icqi

    0下载:
  2. 用java语言实现聊天室的功能,基于TCP/IP和UDP协议的SOCKET编程,基本实现ICQ的功能-socket chatroom based on TCP/IP and UDP, can also upload or download file
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:152518
    • 提供者:木易
  1. UDP_CHAT

    0下载:
  2. 基于udp协议的socket通信编程,局域网即时聊天工具-communication based on UDP protocol
  3. 所属分类:android

    • 发布日期:2017-04-29
    • 文件大小:64089
    • 提供者:刘胜
  1. UdpChat_console

    0下载:
  2. windows下socket编程,利用UDP协议通信,运行在控制台环境下,适合应付网络课程通信编程的作业。-the windows socket programming, using UDP protocol communications, running on the console environment, fit for the online course communication programming jobs.
  3. 所属分类:TCP/IP Stack

    • 发布日期:2017-04-13
    • 文件大小:2204
    • 提供者:钱里驹
  1. oes

    0下载:
  2. 多socket通信UDP源码,使用广播,多播地址,指定目的端口号-Multi-source UDP socket communication, broadcast, multicast address, specify the destination port number
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-27
    • 文件大小:241399
    • 提供者:张凤德
  1. ip_set_list

    0下载:
  2. FD of UDP socket to use.bitmask of debug message categories.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-29
    • 文件大小:8192
    • 提供者:pycinbt
  1. fls

    0下载:
  2. Structure used to connect() the socket to a particular tunnel UDP socket.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:1362
    • 提供者:xucoqk
  1. nfsacl

    0下载:
  2. Structure used to connect() the socket to a particular tunnel UDP socket.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:1805
    • 提供者:haossgs
  1. dumpstate

    0下载:
  2. Structure used to connect() the socket to a particular tunnel UDP socket.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3673
    • 提供者:bsqanon
  1. ETEHRNET

    0下载:
  2. Software test send data Socket Tcp and UDP . Cliente - Server Server Socket-Software test send data Socket Tcp and UDP . Cliente - Server Server Socket
  3. 所属分类:Communication

    • 发布日期:2017-04-17
    • 文件大小:208861
    • 提供者:Eddie
  1. safe_udp

    0下载:
  2. 实现udp的可靠的传输,超时重传,ack 确认-upd socket safe
  3. 所属分类:Communication

    • 发布日期:2017-04-28
    • 文件大小:30906
    • 提供者:张亮
  1. NetWork

    0下载:
  2. 包含TCP和UDP的客户端和服务器端的代码,适合Socket初学者-NetWork Protocol
  3. 所属分类:CSharp

    • 发布日期:2017-04-29
    • 文件大小:63433
    • 提供者:张仕根
  1. SocketTest

    0下载:
  2. 通讯连接测试, 在局域网不同电脑上,可以测试TCP和UDP的通讯收发-Socket Test
  3. 所属分类:Communication

    • 发布日期:2017-04-29
    • 文件大小:369189
    • 提供者:陈安庆
  1. SOCKET_UDP_CLIENT

    0下载:
  2. xample socket client in java udp
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-29
    • 文件大小:20273
    • 提供者:vinh
  1. 022-define-func-arg-with-parens

    0下载:
  2. UDPSocket Accessor API for a UDP socket in either client or server form.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:1501
    • 提供者:zwchhiu
  1. AndroidTCPUdpComm

    0下载:
  2. 最近一个项目可能要用到socket和串口方面的编程,网上找了很多这方面的资料,例子,不过都不怎么全,而且很多例子不能直接拿来用。花了几天时间,将TCP、UDP、串口整合到一起做了个小的project,由于没有真机,仅在模拟器上测试通过,且都是在一台机子上,现贴出代码,希望对大家有所帮助。注意涉及IP地址的地方可能需要修改成你自己的地址-A recent project you might want to use the socket and serial programming, online
  3. 所属分类:Communication

    • 发布日期:2017-04-27
    • 文件大小:15439
    • 提供者:李永芳
  1. src

    0下载:
  2. a.确定本机的IP和端口,socket只有与某一IP和端口绑定,才能发挥其功能。 b.确定通讯协议:TCP 或 UDP。 编程步骤: a.建立一个套接字 b.绑定本机的IP和端口 c.如果是TCP,因为是面向连接的,要利用Listen()方法来监听网络上是否有人给自己发东西 如果是UDP,因为是无连接的,所以来者不拒。 d.TCP情况下,如果监听到一个连接,就可以使用accept来接收这个连接,然后就可以利用Send/Receive来执行操作了。而UDP,则不需要acce
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-14
    • 文件大小:3126
    • 提供者:刘洋
  1. udpSend-and-udpRecv

    0下载:
  2. java 语言的一对简单的UDP通信,通过udpSend实现发送,udpRecv实现监听,一个简单的例子,帮助理解Udp的套接字的用法-by using the java Language,a pair of udp multiple connection,you can learn the use of socket
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1386
    • 提供者:
  1. udpserver

    0下载:
  2. udp服务器程序,负责创建socket,绑定socket,等待接收数据。-udp server program, responsible for creating the socket, bind the socket, waiting to receive data.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-14
    • 文件大小:3526
    • 提供者:cc
  1. UDP_filetranser

    0下载:
  2. UDP利用socket编程实现二进制文件的传输-UDP use of socket programming binary file transfer
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-27
    • 文件大小:9942254
    • 提供者:黄攀
  1. SampleSocket

    0下载:
  2. Linux下TCP\UDP套接字编程,包括TCP三次握手协议、UDP广播、单播等-TCP\UDP Socket programs,including TCP three handshakes protocol and UDP broadcast
  3. 所属分类:Linux Network

    • 发布日期:2017-04-30
    • 文件大小:87340
    • 提供者:tang
« 1 2 ... 44 45 46 47 48 4950 »
搜珍网 www.dssz.com