2013年9月11日
摘要: // 服务器端代码// Server.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "winsock2.h"#pragma comment(lib, "ws2_32.lib")#include using namespace std;int _tmain(int argc, char* argv[]){ const int BUF_SIZE = 64; WSADATA wsd; //WSADATA变量 SO 阅读全文
posted @ 2013-09-11 11:40 andy071001 阅读(402) 评论(0) 推荐(0) 编辑