搜索资源列表
-
0下载:
一个简单的TCP客户端程序流程
1、使用WSAStartup()初始化WinSock库。
2、使用socket()创建一个IPPROTO_TCP SOCKET。
3、使用gethostbyname()/gethostbyaddr()获取主机信息。
4、使用connect()和我们创建的套接字连接服务器。
5、使用send()/recv()发送和接收数据,直到我们的TCP会话结束。
6、使用closesocket()关闭套接字连接。
7、使用WSACleanup()释放
-
-
1下载:
SOCKET多线程,使用TCP连接,当有一个连接请求时候,建立一个线程。共有两个文件,一个Server,还有一个是Client-SOCKET multithreading, the use of TCP connections, when a link request, the establishment of a thread. A total of two documents, one Server, there is a Client
-
-
0下载:
此代码作为Server,使用TCP Socket编程技术,利用多线程并发,并且使用了线程池技术,修改宏定义可以实现任意路client并发连接到此服务器,This code as a Server, using TCP Socket programming using concurrent multi-threaded, and uses the thread pool technology, to amend the definition of macros can be complicated
-
-
0下载:
TCP通信服务器程序,有界面,用流式套接字sockets实现通信。相对应客户端稍后奉上 -TCP communication server program interface communication stream socket sockets. Corresponds to the client to follow
-
-
0下载:
运用socket的客户端与服务端通信,通过抓包工具可以分析Tcp服务。-The use of socket client and server communications, through the capture tool Tcp services can be analyzed.
-
-
0下载:
服务器和客户机端,即建立所谓的客户机/服务器编程模式。在服务器端必须先建立一个ServerSocket对象,然后等待客户机端的访问。而在客户机端,则是建立一个Socket对象直接跟服务器端连接,如果连接建立成功,则服务器端便会产生一个Socket对象,然后我们就可以利用这个Socket对象跟客户机端的Socket对象沟通了。此时在服务器和客户机之间建立了一条可靠连接,客户机和服务器可以在这条连接上可靠的传送数据。客户机发出请求,服务器监听来自客户机的请求,并为客户机提供相应的服务。 -Serve
-
-
0下载:
TCP 客户端和服务器端,非常的简单,适合初学者搞清楚TCP的原理-TCP client and server-side, very easy for beginners to figure out the principles of TCP
-
-
0下载:
TCP/IP Socket
Server Source
Client Source
Chat Program
-
-
0下载:
this is file for Client server socket TCP
-
-
0下载:
game 24 with c# is number go to +, -, *, /, sum is 24 have server and client connect by socket TCP. -game 24 with c# is number go to+,-,*, /, sum is 24 have server and client connect by socket TCP.
-
-
0下载:
vc升入详解(孙鑫)的网络编程,tcp局域网聊天,
基于socket实现,client端程序以后上传。-vc promoted to Xiangjie (Sun Xin) network programming, tcp LAN chat, socket-based implementation, client-side program after the upload.
-
-
0下载:
模拟服务器端和客户端,模拟TCP/IP协议和服务器浏览器工作流程。-Simulation server-side and client-side, analog TCP/IP protocol and the server browser workflow.
-
-
1下载:
这是个基于C#语言实现的Socket通讯,分客户端和服务器端,能进行TCP通讯-This is based on C# language of the Socket Communications, sub-client and server side, capable of TCP communication
-
-
0下载:
this file contains socket programming codes using Tcp(transmission control protocol).
this file contains a simple Tcp server and Tcp client code, Tcp server handling Tcp client by creating child process using fork(), and Tcp server handling multipl
-
-
0下载:
socket TCP服务端客户端实现 客户端发请求,服务端接受后返回大写-socket TCP server/client
-
-
0下载:
C# 自己编写的 TCP/IP socket示例程序 server client-C# TCP/IP socket
-
-
0下载:
网络编程socket
tcp客户端 服务端源码-Network programming socket
tcp client server source code
-
-
0下载:
A good Java Socket TCP+UDP Client+Server.
-
-
0下载:
本软件主要功能如下:
1.串口,TCP服务端/客户端,UDP服务端/客户端通讯调试;
2.支持Hex,ASCII两种格式的命令调试;
3.接收数据可通过右键菜单一键计算Hex对应的数值;
4.字节计算器/检验值计算器(CRC16,自定义多项式CRC16,XOR)。
下一版本计划加入功能:
1.串口通讯监视。
2.Socket通讯监视。-The main function is as follows: 1. Serial por
-
-
0下载:
《TCP Sockets编程》通过循序渐进的方式,从最基础的概念到高级别的Ruby封装器,再到更复杂的应用,提供了开发成熟且功能强大的应用程序所必备的知识和技巧,帮助读者掌握在Ruby语言环境下,用套接字实现项目开发的任务和技术。
《TCP Sockets编程》适合对TCP套接字感兴趣的读者阅读。(TCP/IP Sockets in C: Practical Guide for Programmers, 2nd Edition is a quick and affordable way t
-