資源描述:
《基于winsock的簡單tcp網(wǎng)絡(luò)編程實驗報告》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、實驗報告實驗課程名稱:通信軟件基礎(chǔ)實驗課學(xué)院:軟件工程學(xué)院專業(yè):軟件工程指導(dǎo)教師:報告人姓名:學(xué)號:班級:學(xué)期:實驗成績實驗項目名稱基于WinSock的簡單TCP網(wǎng)絡(luò)編程一、實驗?zāi)康呐c要求:1、學(xué)習(xí)和掌握Socket編程的面向連接編程模型。2、學(xué)習(xí)和掌握基于WinSock的TCP網(wǎng)絡(luò)編程方法。二、實驗設(shè)備及軟件:筆記本電腦、Window7操作系統(tǒng)、MicrosoftVisualStudio2012三、實驗方法(原理、流程圖)流程圖:四、實驗過程、步驟及內(nèi)容實驗代碼:server.h#defineMAX_CLIENT10//同時服務(wù)的client數(shù)目上限#defi
2、neMAX_BUF_SIZE65535//緩存區(qū)的大小constu_shortUDPSrvPort=2345;//Server的UDP端口constcharSTART_CMD[]="START";constcharGETCURTIME_CMD[]="GETCURTIME";//傳遞給TCP線程的結(jié)構(gòu)化參數(shù)structTcpThreadParam{SOCKETsocket;sockaddr_inaddr;};DWORDWINAPITcpServeThread(LPVOIDlpParam);//TCP線程的線程函數(shù)DWORDWINAPIUdpServer(LPVOI
3、DlpParam);//UDP服務(wù)器線程server.cpp#include"stdafx.h"#include"iostream.h"#include"stdio.h"#include"string.h"#include"time.h"#include"WinSock2.h"#include"Windows.h"#include"server.h"#pragmacomment(lib,"Ws2_32.lib")#pragmapack(1)//結(jié)構(gòu)在存儲時按字節(jié)對齊longTcpClientCount=0;intmain(intargc,char*argv[])
4、{////檢查命令行參數(shù)//if(argc!=2)//{//cerr<<"Worngformat!Correctusage:Server.exe";//return-1;//}//初始化winsock2環(huán)境WSADATAwsa;if(WSAStartup(MAKEWORD(2,2),&wsa)!=0){cerr<<"Failedtoinitializethewinsock2stack"<<"errorcode:"<5、readId;CreateThread(NULL,0,UdpServer,NULL,0,&dwThreadId);//創(chuàng)建用于偵聽的TCPServerSocketSOCKETListenSocket=socket(AF_INET,SOCK_STREAM,0);//獲取TCP監(jiān)聽端口號u_shortListenPort=(u_short)atoi(argv[1]);//獲取本機名charhostname[256];gethostname(hostname,sizeof(hostname));//獲取本地IP地址hostent*pHostent=gethostbyn
6、ame(hostname);//填充本地TCPSocket地址結(jié)構(gòu)SOCKADDR_INListenAddr;memset(&ListenAddr,0,sizeof(SOCKADDR_IN));ListenAddr.sin_family=AF_INET;ListenAddr.sin_port=htons(ListenPort);ListenAddr.sin_addr=*(in_addr*)pHostent->h_addr_list[0];//綁定TCP端口if(bind(ListenSocket,(sockaddr*)&ListenAddr,sizeof(Lis
7、tenAddr))==SOCKET_ERROR){cerr<<"FailedtobindtheListenSocket"<<"errorcode:"<8、nTCPPort:"<<