登录
首页 » Windows Socket编程 » a LAN Multicast win32 procedures, including the transmitter and receiver. You ar...

a LAN Multicast win32 procedures, including the transmitter and receiver. You ar...

于 2023-01-20 发布 文件大小:5.78 kB
0 45
下载积分: 2 下载次数: 1

代码说明:

一个局域网组播的win32程序,包括发送端和接收端。欢迎大家共同学习-a LAN Multicast win32 procedures, including the transmitter and receiver. You are welcome to jointly study

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 网络管理序。含ping,ftp,smtp等功能
    网络管理程序。含ping,ftp,smtp等功能 -Network manage app , having ping , ftp and smtp etc
    2022-10-30 10:00:02下载
    积分:1
  • UDP多播套接字实现
    socket实现udp组播,需要用UDP通信可以参照-udp multicast socket implementation
    2022-02-11 12:50:37下载
    积分:1
  • 使用winpcap的dump udp数据
    使用winpcap的dump udp数据-winpcap use the data dump udp
    2022-10-24 00:40:04下载
    积分:1
  • 进行连续的Ping的小序,置于有何作用不知,对学习网络还是有帮助的。.net 2003译通过...
    进行连续的Ping的小程序,置于有何作用不知,对学习网络编程还是有帮助的。.net 2003编译通过-conduct continuous Ping small procedures, I do not know what the effect placed on the study of network programming or help. . Net compiled through 2003
    2023-04-10 12:45:49下载
    积分:1
  • 1。注册会员发布商品功能,可以上传商品图片。 2。注册会员修改商品功能,可以修改商品图片,旧的商品图片将被删除。 3。注册会员删除商品功能,删除商品信息的同时将...
    1。注册会员发布商品功能,可以上传商品图片。 2。注册会员修改商品功能,可以修改商品图片,旧的商品图片将被删除。 3。注册会员删除商品功能,删除商品信息的同时将删除商品图片。 4。管理员发布公告功能。 5。管理员对商品的修改、删除功能(同注册会员对商品的管理功能)。 6。管理员对注册会员的修改、删除功能,删除会员时将删除会员发布的所有商品信息及其商品图片。 7。美化了程序,并进行了分页功能。 8.更新一些基本功能和BUG-1. Member registration issued commodity function can upload pictures of goods. 2. Register to amend the Trade function could amend the Trade photographs, old pictures of goods will be deleted. 3. Member registration commodity function to delete, delete commodity information at the same time to remove items pictures. 4. Administrators issued a public notice function. 5. Managers of commodity modification, deletion function (with a registered membership of commodity management functions). 6. Administrators of registered members of the modification, deletion function to delete Member Member will be deleted when the release of information about goods and merchandise photos. 7. Landscaping procedures, and the tabs. 8. Update some of the basic functions and BUG
    2022-07-08 05:17:31下载
    积分:1
  • 在应用层进行加密处理的VPN源代码,支持Windows平台和Linux平台。...
    在应用层进行加密处理的VPN源代码,支持Windows平台和Linux平台。-in the application layer VPN encryption source code, support for Windows and Linux platforms.
    2022-10-04 03:10:03下载
    积分:1
  • 一个网络方面的源序,通过网络实现对内网电脑各参数信息采集的示例,客户端....
    一个网络方面的源程序,通过网络编程实现对内网电脑各参数信息采集的示例,客户端.-a network source, network programming through internal computer network parameters Information Collection example, the client.
    2022-01-26 07:33:17下载
    积分:1
  • C# ftp上传文件代码,配置服务器和本地目录后自动上传文件
    C# ftp上传文件代码,配置服务器和本地目录后自动上传文件-C# ftp Uploadfile SourceCode
    2022-02-03 09:32:22下载
    积分:1
  • enhanced netstat.可以找出端口对应的进PID,从而确定某个端口是由哪个序打开的。对于二次开发很有用。...
    enhanced netstat.可以找出端口对应的进程PID,从而确定某个端口是由哪个程序打开的。对于二次开发很有用。-enhanced netstat. Ports can find the corresponding process PID, a port in order to determine which procedures are open. For the Second Development useful.
    2022-07-08 09:17:54下载
    积分:1
  •  各个线任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线一开始的任务是从文件的0位置开始下载一直到72908位置处。线1每次下载...
     各个线程任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线程一开始的任务是从文件的0位置开始下载一直到72908位置处。线程1每次下载一块数据后就要调整任务,如第一次下载了20800字节的数据,那么线程1的任务将改为:20800-72908。如此下去,直到任务为72908-72908时表示线程1完成了当前的下载任务。此时,线程1就分析各个线程的任务,找出任务最为繁忙的一个线程:如线程3:14816-218724。那么线程1就自动去调整任务,拿50%的任务来再次下载。周而复始直到各个线程都完成任务。不过这里有一点需要注意:为了避免重复下载部分数据,在调整任务的时候,起始的文件便移量必须加上接受缓冲器的字节数,因为如前面所举的列子来看。线程1和线程3在平衡负载的时候,线程正在下载数据,如果所剩的数据比接受缓冲器的大小还小,线程1和线程3的部分下载数据将会重复。   在调整任务和分析任务的时候,会发现一个问题。就是读取文件数据太过频繁。于是我用了一个数据结构。在下载文件的过程中始终打开配置文件,这样速度提高了很多。在文件下载完毕后关闭文件。-various threads assignment is achieved. At the beginning of the download, the paper divided into a number of pieces of the download. As a thread of a task is to start from the position paper of 0 to start the download has 72,908 locations Department. Thread a download each one will have to adjust the data tasks, such as the first downloaded 20,800 gigabytes of data, then threaded a task will be re :20800- 72908. This situation continues until the mandate of 72908-72908 said threaded a completion of the cu
    2022-03-20 03:50:55下载
    积分:1
  • 696524资源总数
  • 103957会员总数
  • 51今日下载