Welcome![Sign In][Sign Up]
Location:
Search - listen socket

Search list

[Consolesource_SupportFSM

Description: Windows下的服务程序,一个server,一个client,server监听SOCKET-serve program in windows,a server ,a client , server listen socket
Platform: | Size: 9074 | Author: 张龙萍 | Hits:

[JSP/Javalisten

Description: java的网络编程,socket做服务器端的程序。
Platform: | Size: 5439 | Author: han | Hits:

[WinSock-NDISlisten

Description: 基于创建原始套接字,修改I/0选项实现的一个IP包捕获并分析的应用程序. vc6.0下编译通过-on creating original socket, revised I / 0 option of achieving an IP packet capture and analysis applications. Under compile vc6.0
Platform: | Size: 40517 | Author: 檀超 | Hits:

[OS programlisten

Description: 网络监听程序,基于创建原始套接字,修改I/0选项实现的一个IP包捕获的应用程序-network monitoring procedures, based on the creation of the original socket, revised I / 0 option of achieving an IP packet capture applications
Platform: | Size: 31653 | Author: 李宾 | Hits:

[Windows DevelopMyQQServer

Description: 实现了一个聊天系统的服务器端,建立侦听套接字,建立连接套接字,动态隐藏与显示控件,使用列表框控件.该服务器是以本地IP的8000端口建立服务;而且本程序没有提供相应的设置接口,如需修改则可以程序中修改代码,再重新编译生成应用程序。-It is a server for a talking system. it create listen socket and connect socket when it runs .Its control have dynamic shadow and display function .It listen local ip at port of 8080, but sorry that it haven t provide the interface for reset corresponding setup .So can modify the programm if need, and rebuild for the new application.
Platform: | Size: 70274 | Author: yf | Hits:

[Sniffer Package capturelisten

Description: 网络监听程序,基于创建原始套接字,修改I/0选项实现的一个IP包捕获的应用程序-network monitoring procedures, based on the creation of the original socket, revised I/0 option of achieving an IP packet capture applications
Platform: | Size: 31744 | Author: 李宾 | Hits:

[Windows DevelopMyQQServer

Description: 实现了一个聊天系统的服务器端,建立侦听套接字,建立连接套接字,动态隐藏与显示控件,使用列表框控件.该服务器是以本地IP的8000端口建立服务;而且本程序没有提供相应的设置接口,如需修改则可以程序中修改代码,再重新编译生成应用程序。-It is a server for a talking system. it create listen socket and connect socket when it runs .Its control have dynamic shadow and display function .It listen local ip at port of 8080, but sorry that it haven t provide the interface for reset corresponding setup .So can modify the programm if need, and rebuild for the new application.
Platform: | Size: 459776 | Author: yf | Hits:

[Windows Developsf_200562516252

Description: 一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below: struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void* p, char* buf, int len) void OnAccept(SOCKET socket) void OnClose(void* p) } void myIocp::OnAccept(SOCKET socket) { TSession*s = new TSession s->socket = socket //here you can do something about connection session,such as find a unique id. SetIoCompletionPort(socket, s) // make connection socket associate with a custom structure } void myIocp::OnRead(void* p, char* buf, int len) { TSession*s = (TSession*)p send(s->socket, buf, len, 0) // return received message to client void myIocp::OnClose(void* p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) //start listenning net port,wait for client connect.
Platform: | Size: 2048 | Author: boxu | Hits:

[Consolesource_SupportFSM

Description: Windows下的服务程序,一个server,一个client,server监听SOCKET-serve program in windows,a server ,a client , server listen socket
Platform: | Size: 9216 | Author: 张龙萍 | Hits:

[Internet-NetworkMTServerSrc

Description: 一个多线程实现的TCP服务端 listen, 在accept一个请求后,再启动一个线程来处理对应的socket-a multithreaded achieving TCP server listen, accept a request and then start a thread to handle the corresponding socket
Platform: | Size: 6144 | Author: 无形 | Hits:

[Internet-NetworkC++NetworkProgramming

Description: It is about C++ Network programming(Socket Application Programming Interface).If you listen this lesson, you must get this program!
Platform: | Size: 130048 | Author: 邓俊 | Hits:

[Windows Developlisten23

Description: socket的应用,一个简单的listen侦听的VC++程序,值得一看-socket applications, a simple interception listen to the VC++ program, an eye-catcher
Platform: | Size: 2961408 | Author: 辰辰 | Hits:

[Telnet ServerMyTelnet

Description: telnet服务器的实现: 1.客户端通过telnet连接后,服务器返回系统的一些信息(自己定义,至少应该包括程序作者的学号),之后显示提示符"login:"提示用户输入用户名进行登录 2.要求对用户名和密码进行验证。用户名和密码均为学号的后3位。如果用户名和密码错误则返回invalid user or passwd并提示重新输入 3.服务器端至少支持如下命令(命令不带参数) author:返回程序作者的相关信息 date:返回服务器的当前日期,日期的格式自己定义,但在help中做出说明 time:返回服务器的当前时间,时间的格式自己定义,但在help中做出说明 help:返回服务器所支持的命令 bye:与服务器断开连接 若输入了不支持的命令,则应回显相应的提示,如提示用户键入help来查看相应的命令 提示:服务器端有一个接收客户端输入字符的缓冲区,逐个字符进行接收;当发现是回车键后,即执行已接收字符对应的命令并回显.另外,telnet.exe是windows下自带的程序 设计的要求如下: 1.使用基本的套接口函数进行开发,即使用socket()、bind()、listen()、accept()等 2.不使用图形界面,只要能用文本显示相关信息即可,另外,需要把这些相关信息写入到一日志文件中(文件名为:学号.txt) 内附程序说明书
Platform: | Size: 70656 | Author: 张某某 | Hits:

[Internet-Networklisten

Description: 使用原始套接字写的tcp/ip通讯的服务器端程序,很好用的。-Written by the use of raw socket tcp/ip communication server-side procedures, very good use.
Platform: | Size: 56320 | Author: 扬载伦 | Hits:

[Internet-NetworkListenSocket

Description: 封装好的监听(Listen)Socket类,非常好用!-Packaging good listening (Listen) Socket class, very easy to use!
Platform: | Size: 1024 | Author: hqr | Hits:

[Internet-NetworkSocket

Description: Socket C++封装类, start, bind, listen, accept, close, send, recv-Socket C++ package type, start, bind, listen, accept, close, send, recv ...
Platform: | Size: 7168 | Author: Joker Lee | Hits:

[Internet-Networksocket

Description: 用VC编写的socket小程序,有客户端和服务端,两者3次握手建立连接,用到了最基本的socket,bind,listen,send,receive,函数,非常适合初学者,我就是用这个例子学习的socket编程,很经典的例子有,还有小界面-Socket using a small program written in VC, there are client and server, the two three-way handshake to establish a connection, use the most basic socket, bind, listen, send, receive, function, very suitable for beginners, but I just use this example to learn socket programming, it is the classic case in point, there is a small interface
Platform: | Size: 78848 | Author: vivianjia | Hits:

[GPS developsocket-port-listen-Pro-

Description: 监听socket端口的通与断,也可以修改后自己使用-listen socket port
Platform: | Size: 5120 | Author: 叶平 | Hits:

[Software Engineeringlisten-socket

Description: linux socket中listen参数的详细介绍,对于了解listen函数的使用非常有用-Details of the listen parameters of Linux in socket, for the understanding of the use of the listen function is very useful!!
Platform: | Size: 75776 | Author: 张謇 | Hits:

[Internet-NetworkSocket

Description: 创建windows SOCKET服务器,This is a Server side application! WSAStartup() called successful! socket() called successful! bind() called successful listen() called successful!(Creating a Windows SOCKET server)
Platform: | Size: 1399808 | Author: 寂寞小奥特曼 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net