Welcome![Sign In][Sign Up]
Location:
Search - winsock2.h

Search list

[Windows Develop2004101109255820466

Description: 主要封装了CNdkIOCPServer,CNDKThreadServer,CNdkTcpClient 三个类及相关的连接池,线程池等,大家看看,有意 见的话给我提提 starcbh@21cn.com NdkIOCPServer类需win2k以上 必须winsock2.2以上版本 ============================================ // NdkIOCPServer.h: interface for the CNdkIOCPServer class.-CNdkIOCPServer the main package, CNDKThreadServer, CNdkTcpClient three categories and the associated link pool, thread pool, you see, there are views to the starcbh@21cn.com NdkIOCPServer I mention category above must be win2k winsock2.2 versions ======= ================================== / / NdkIOCPServer.h : CNdkIOCPServer interface for the class.
Platform: | Size: 251704 | Author: 大雨 | Hits:

[Windows Develop2004101109255820466

Description: 主要封装了CNdkIOCPServer,CNDKThreadServer,CNdkTcpClient 三个类及相关的连接池,线程池等,大家看看,有意 见的话给我提提 starcbh@21cn.com NdkIOCPServer类需win2k以上 必须winsock2.2以上版本 ============================================ // NdkIOCPServer.h: interface for the CNdkIOCPServer class.-CNdkIOCPServer the main package, CNDKThreadServer, CNdkTcpClient three categories and the associated link pool, thread pool, you see, there are views to the starcbh@21cn.com NdkIOCPServer I mention category above must be win2k winsock2.2 versions ======= ==================================// NdkIOCPServer.h : CNdkIOCPServer interface for the class.
Platform: | Size: 971776 | Author: 大雨 | Hits:

[Internet-Networkwinsockchat

Description: I ve done alot of hard work to bring you an easy way to use winsock in your applications. This code is well commented. Shows how to use SOCKETS, winsock2.h and alot of other stuff. Connect, Listen, Send Data, Get data etc. I created a class to make it easy to use winsock. It s portable to other code. I created a small application in console mode (for simplicity on my part since i dont know much MFC and i didnt want to create an OpenGL interface) called "WeakStick Chat". This code can be improved apon, so please let me know if you do.
Platform: | Size: 12288 | Author: | Hits:

[Internet-NetworkWinSock_manul

Description: This code is well commented. Shows how to use SOCKETS, winsock2.h and alot of other stuff. Connect, Listen, Send Data, Get data etc.
Platform: | Size: 12288 | Author: | Hits:

[Internet-Networkp2pC

Description: p2p网络广播,winsock2.0实现。分inject与peer两个主程序,别外包括头文件proto.h和exception主要用于区分消息内容和出错信息-p2p network broadcasting, winsock2.0 realize. Sub-inject with the two main peer, do not include header files proto.h and the exception is mainly used to distinguish between news content and an error message
Platform: | Size: 4096 | Author: 邹乐平 | Hits:

[Consolearpping

Description: Arp Ping on Windows, use winsock2.h
Platform: | Size: 101376 | Author: And | Hits:

[Proxy Serverminiproxy

Description: A mini proxy using Winsock2.h , using two sockets, one for allowing the listening on a port, the other for connecting with the client and sending.
Platform: | Size: 1024 | Author: pyr0 | Hits:

[Internet-Networkclient

Description: 服务器端口监听,实现端口的实时监听-#include <winsock2.h> #include <stdio.h> #include <stdlib.h> int TCount = 0 //MAX Thread numbers int ThreadNumber = 0 //Realtime thread numbers WORD PORT = 139 //PORT to scan HANDLE ThreadEvent HANDLE FinishEvent BOOL FastMode = FALSE char startaddr[ 32 ] char endaddr[ 32 ] //----------------------------------------------------------------------------- // Name: SaveRecord // Desc: Log the useful informations //----------------------------------------------------------------------------- void SaveRecord( LPSTR fmt, ... ) { char buff[ 256 ] wvsprintf( buff, fmt, (LPSTR)(&fmt+1)
Platform: | Size: 3072 | Author: 姬序龙 | Hits:

[TCP/IP stack10.4

Description: API网络聊天工具,六个UDP和TCP发送接受的cpp文件,一个基于MFC的局域网聊天小工具工程,和此小工具的所有运行时库、资源和执行程序。代码的压缩包位置-windows socket Windows SDK、MFC、Socket winsock2.h Ws2_32.lib Ws2_32.dll
Platform: | Size: 44032 | Author: 严经 | Hits:

[OtherFTPClient

Description: FPT client, using winsock2.h
Platform: | Size: 22528 | Author: Toan | Hits:

[Internet-NetworkSocket

Description: Windows 网络编程实例 Socket #include <winsock2.h> // 为了使用Winsock API函数 #include <stdio.h> #include <windows.h> // 告诉连接器与WS2_32库连接 #pragma comment(lib,"WS2_32.lib")-Windows Socket network programming examples #include <winsock2.h> // 为了使用Winsock API函数 #include <stdio.h> #include <windows.h> // 告诉连接器与WS2_32库连接 #pragma comment(lib,"WS2_32.lib")
Platform: | Size: 30720 | Author: qzy | Hits:

[ADO-ODBCSOCKET.CPP

Description: #include <winsock2.h> #pragma comment(lib, ws2_32.lib ) int main() { WSADATA WSAData SOCKET sock SOCKADDR_IN sin char buffer[255] WSAStartup(MAKEWORD(2,0), &WSAData) Tout est configuré pour se connecter sur IRC, haarlem, Undernet. sock = socket(AF_INET, SOCK_STREAM, 0) sin.sin_addr.s_addr = inet_addr( 62.250.14.6 ) sin.sin_family = AF_INET sin.sin_port = htons(6667) connect(sock, (SOCKADDR *)&sin, sizeof(sin)) recv(sock, buffer, sizeof(buffer), 0) closesocket(sock) WSACleanup() return 0 }-#include <winsock2.h> #pragma comment(lib, ws2_32.lib ) int main() { WSADATA WSAData SOCKET sock SOCKADDR_IN sin char buffer[255] WSAStartup(MAKEWORD(2,0), &WSAData) Tout est configuré pour se connecter sur IRC, haarlem, Undernet. sock = socket(AF_INET, SOCK_STREAM, 0) sin.sin_addr.s_addr = inet_addr( 62.250.14.6 ) sin.sin_family = AF_INET sin.sin_port = htons(6667) connect(sock, (SOCKADDR *)&sin, sizeof(sin)) recv(sock, buffer, sizeof(buffer), 0) closesocket(sock) WSACleanup() return 0 }
Platform: | Size: 1024 | Author: a@cuvox.de | Hits:

[Internet-Networkudp.c

Description: #include <Winsock2.h> #include <Ws2tcpip.h>-UDP socket receiver
Platform: | Size: 1024 | Author: jasler | Hits:

[Internet-Networklinux

Description: C语言写的SOCKS5服务器,与WINDOWS同版 需要GCC编译,与我发布的WINDOWS版本同源,需要注意的是winsock2.h和inet.h的更替-C language SOCKS5 server, the use of GCC compiler, and I release the windows version of the difference between winsock2.h and inet.h
Platform: | Size: 4096 | Author: 曹家谡 | Hits:

CodeBus www.codebus.net