摘要: //服务器// 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; } ... 阅读全文
posted @ 2013-08-28 02:15 呵呵·· 阅读(279) 评论(0) 推荐(0) 编辑