摘要:
//服务器// winsvr.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include #pragma comment(lib, "ws2_32.lib")void TCTServer(){ SOCKET socksvr = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if(INVALID_SOCKET == socksvr) { return; } ... 阅读全文