登录
首页 » Windows Socket编程 » socket网络编程

socket网络编程

于 2023-03-14 发布 文件大小:3.33 MB
0 159
下载积分: 2 下载次数: 1

代码说明:

这是个socket网络编程,使用的是udp的方式用异步通信来实现的,这个程序可供刚刚学习socket编程的人员参考借鉴。里面用到的都是最基础的东西。所以有助于学习。

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

发表评论

0 个回复

  • 客户机/服务器模型是为了解决通信中的聚合问题。如果不采用客户机/服务器模型很难实现正常的通信,只有在一方作为服务器采用被动方式,始终等待对方与其通信;另一方作为...
    客户机/服务器模型是为了解决通信中的聚合问题。如果不采用客户机/服务器模型很难实现正常的通信,只有在一方作为服务器采用被动方式,始终等待对方与其通信;另一方作为客户机采用主动通信的方式,主动发起通信过程,才能最终完成通信。-client/server model is to solve the communication problems polymerization. If we do not use the client/server model is very difficult to achieve normal communications, as one of only a passive server, which has been waiting for communication with the other side; The other client as an active communication, initiate the communication process can be finalized communications.
    2022-01-26 07:43:14下载
    积分:1
  • 用visual c++开发的模拟小球动画的
    用visual c++开发的模拟小球动画的程序-Using visual c++ Developed simulation procedures for the ball animation
    2022-05-16 18:54:53下载
    积分:1
  • Converts_url 到真实 ip 的主机名。
    曾经需要将主机名转换为 IP 号码吗?没有直接的例程中有可用德尔福为此但我们总是可以代码我们通过的方式 给你!anice 小程序对主机名转换为 url 到真正 ip.it 使用使用 TCP 套接字
    2022-08-05 12:10:15下载
    积分:1
  • Nautilus is an integrated network assistant for the TCP/IP protocol network tool...
    鹦鹉螺网络助手是一个集成了用于 TCP/IP 协议的多种网络工具的应用软件。它基于 Windows Socket2.0 版本,功能包括:Ping;Host lookup(主机查询);Finger(帐号查询);同步本地主机时钟的 Time(网络时钟);WhoIs(域名查询);TraceRoute(路由跟踪);ISPPinger(以一定时间间隔持续 ping 同一台主机);QoD 服务;增强的快速拨号;支持多帐号的电邮检查-Nautilus is an integrated network assistant for the TCP/IP protocol network tools for a variety of applications. It is based on Windows Socket2.0 version features include: Ping Host lookup (host query) Finger (account inquiries) synchronize the local host clock Time (network clock) WhoIs (domain name query) TraceRoute (routing tracking) ISPPinger (to a certain time interval continuous ping the same host) QoD services enhanced speed dial support multi-account e-mail check
    2022-11-03 06:50:03下载
    积分:1
  • 一个“Ping”序,主要包括:填写一个ICMP回响请求报文,以数据报的方式向目标主机发送,然后接收目标主机回送的ICMP回响应答报文,若成功,给出提示信息。...
    一个“Ping”程序,主要包括:填写一个ICMP回响请求报文,以数据报的方式向目标主机发送,然后接收目标主机回送的ICMP回响应答报文,若成功,给出提示信息。-a "Ping" procedures, including : a complete response ICMP request packet, Data reported to the mainframe sent to the target and then receiving sent back to the mainframe objectives of the ICMP response Reply message, If successful, and given a message.
    2023-02-10 15:25:03下载
    积分:1
  • 个人脚本收藏(Myjs).rar
    个人脚本收藏(Myjs).rar-personal collection of scripts (Myjs). Rar
    2022-05-18 03:13:10下载
    积分:1
  • 网络视频
    网络视频监控源代码,用VC6.0开发,用很大的参考意义-net video
    2022-07-23 11:04:57下载
    积分:1
  • 网络的相关知识,网络序的写,Socket是连接应用序与网络驱动序的桥梁,Socket在应用序中创建,通过bind与驱动序建立关系。此后,应用序送给...
    网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面的聊天程序。-network of the knowledge, network program, Socket is a link between the application and network driver bridges, Socket in the application process to create, Driving through bind with the procedures established relations. Since then, Socket applications presented data from the socket to the network driver to send out. Computer network received from the Socket bundled IP Port relevant data, by the driver to Socket, application procedures can Socket from the extraction of data received. Network applications through this is the socket for data transmission and reception. TCP and UDP Principle and the work of preparation, how to process the document link. Characters in a chat interface procedures.
    2022-02-07 17:35:59下载
    积分:1
  • 译synscan.cpp请注意,如果是ADSL用户,可能要把代码里的hp
    编译synscan.cpp请注意,如果是ADSL用户,可能要把代码里的hp->h_addr_list[0]改为hp->h_addr_list[1]才能够扫描,具体是[0]还是[1]或其它,可以先编译getallIP.cpp来获取外网IP的网卡的代号。例如编译getallIP.cpp后得到以下输出 Address [0]: 192.168.1.2 Address [1]: 218.10.14.151(公网IP) 那么想扫描外网的话就要把synscan.cpp里的hp->h_addr_list[0]改为hp->h_addr_list[1]了-Compiler synscan.cpp Please note that if it is ADSL users may need to code in the hp-
    2022-02-12 10:12:34下载
    积分:1
  • bandwidth control procedures, including bandwidth transmission rate control.
    带宽控制程序,包括带宽的传输速率的控制.-bandwidth control procedures, including bandwidth transmission rate control.
    2022-03-12 13:48:25下载
    积分:1
  • 696516资源总数
  • 106641会员总数
  • 4今日下载