Login
升级VIP 登录 注册 安全退出
当前位置: 首页 > word文档 > 其他文档 > socket-原理,websocket原理

socket-原理,websocket原理

收藏

本作品内容为socket-原理,格式为 docx ,大小 35751 KB ,页数为 17页

socket-原理


('socket程序,文件发送和接收总是出问题文件发送函数voidfilesend(FILEpfile,SOCKETsock){intnNumRead=0;charsendbuf[65535];while(!feof(pfile)){//memset(sendbuf,\'\\0\',sizeof(sendbuf));nNumRead=fread(sendbuf,1,65535,pfile);intsendsum=send(sock,sendbuf,nNumRead,0);cout<p_proto);错误码WSANOTINITIALISEDAsuccessfulWSAStartupcallmustoccurbeforeusingthisfunction.WSAENETDOWNThenetworksubsystemortheassociatedserviceproviderhasfailed.WSAEAFNOSUPPORTThespecifiedaddressfamilyisnotsupported.WSAEINPROGRESSAblockingWindowsSockets1.1callisinprogress,ortheserviceproviderisstillprocessingacallbackfunction.WSAEMFILENomoresocketdescriptorsareavailable.WSAENOBUFSNobufferspaceisavailable.Thesocketcannotbecreated.WSAEPROTONOSUPPORTThespecifiedprotocolisnotsupported.WSAEPROTOTYPEThespecifiedprotocolisthewrongtypeforthissocket.WSAESOCKTNOSUPPORTThespecifiedsockettypeisnotsupportedinthisaddressfamily.RemarksThesocketfunctioncausesasocketdescriptorandanyrelatedresourcestobeallocatedandboundtoaspecifictransport-serviceprovider.WindowsSocketswillutilizethefirstavailableserviceproviderthatsupportstherequestedcombinationofaddressfamily,sockettypeandprotocolparameters.Thesocketthatiscreatedwillhavetheoverlappedattributeasadefault.ForMicrosoftoperatingsystems,theMicrosoft-specificsocketoption,SO_OPENTYPE,definedinMswsock.hcanaffectthisdefault.SeeMicrosoft-specificdocumentationforadetaileddescriptionofSO_OPENTYPE.SocketswithouttheoverlappedattributecanbecreatedbyusingWSASocket.Allfunctionsthatallowoverlappedoperation(WSASend,WSARecv,WSASendTo,WSARecvFrom,andWSAIoctl)alsosupportnonoverlappedusageonanoverlappedsocketifthevaluesforparametersrelatedtooverlappedoperationareNULL.Whenselectingaprotocolanditssupportingserviceproviderthisprocedurewillonlychooseabaseprotocoloraprotocolchain,notaprotocollayerbyitself.Unchainedprotocollayersarenotconsideredtohavepartialmatchesontypeorafeither.Thatis,theydonotleadtoanerrorcodeofWSAEAFNOSUPPORTorWSAEPROTONOSUPPORTifnosuitableprotocolisfound.ImportantThemanifestconstantAF_UNSPECcontinuestobedefinedintheheaderfilebutitsuseisstronglydiscouraged,asthiscancauseambiguityininterpretingthevalueoftheprotocolparameter.Connection-orientedsocketssuchasSOCK_STREAMprovidefull-duplexconnections,andmustbeinaconnectedstatebeforeanydatacanbesentorreceivedonit.Aconnectiontoanothersocketiscreatedwithaconnectcall.Onceconnected,datacanbetransferredusingsendandrecvcalls.Whenasessionhasbeencompleted,aclosesocketmustbeperformed.Thecommunicationsprotocolsusedtoimplementareliable,connection-orientedsocketensurethatdataisnotlostorduplicated.Ifdataforwhichthepeerprotocolhasbufferspacecannotbesuccessfullytransmittedwithinareasonablelengthoftime,theconnectionisconsideredbrokenandsubsequentcallswillfailwiththeerrorcodesettoWSAETIMEDOUT.Connectionless,message-orientedsocketsallowsendingandreceivingofdatagramstoandfromarbitrarypeersusingsendtoandrecvfrom.Ifsuchasocketisconnectedtoaspecificpeer,datagramscanbesenttothatpeerusingsendandcanbereceivedonlyfromthispeerusingrecv.SupportforsocketswithtypeSOCK_RAWisnotrequired,butserviceprovidersareencouragedtosupportrawsocketsaspracticable.NotesforIrDASocketsTheAf_irda.hheaderfilemustbeexplicitlyincluded.OnlySOCK_STREAMissupported;theSOCK_DGRAMtypeisnotsupportedbyIrDA.Theprotocolparameterisalwayssetto0forIrDA.NoteOnWindowsNT,rawsocketsupportrequiresadministrativeprivileges.RequirementsWindowsNT/2000/XP:IncludedinWindowsNT3.1andlater.Windows95/98/Me:IncludedinWindows95andlater.Header:DeclaredinWinsock2.h.Library:UseWs2_32.lib.SeeAlsoWindowsSocketsProgrammingConsiderationsOverview,SocketFunctions,accept,bind,connect,getsockname,getsockopt,ioctlsocket,listen,recv,recvfrom,select,send,sendto,setsockopt,shutdown,WSASocketWindowsSocket编程收藏一、基于TCP(面向连接)的socket编程服务器端程序:1、创建套接字(socket)。2、将套接字绑定到一个本地地址和端口上(bind)。3、将套接字设为监听模式,准备接受客户请求(listen)。4、等待客户请求到来;当请求到来后,接受连接请求,返回一个新的对应于此次连接的套接字(accept)。5、用返回的套接字和客户端进行通信(send/recv)。6、返回,等待另一客户请求。7、关闭套接字。客户端程序:1、创建套接字(socket)。2、向服务器发出连接请求(connect)。3、和服务器端进行通信(send/recv)。4、关闭套接字。二、基于UDP(面向无连接)的socket编程服务器端(接受端)程序:1、创建套接字(socket)。2、将套接字绑定到一个本地地址和端口上(bind)。3、等待接收数据(recvfrom)。4、关闭套接字。客户端(发送端)程序:1、创建套接字(socket)。2、向服务器发送数据(sendto)。3、关闭套接字。其实对于建立连接后,可以相互发送信息,无所谓谁是服务器,谁是客户端。在开始的时候,一定是bind的一段,接收数据,这是死的。对于服务器和客户是在开始的时候划分的。三、建立MFC的控制台应用程序,编写基于TCP/IP的服务器端应用。1、intWSAStartup(WORDwVersionRequested,LPWSADATAlpWSAData);wVersionRequested的高位字节说明了socket的副版本号,低位字节说明了socket的主版本号。LPWSADATAlpWSAData指向WSADATA数据结构的指针,其中包含多个字段。WSAStartup是socket应用程序调用的第一个函数,用于加载WindowsSockets版本号和WindowsSockets执行的细节参数。具体代码如下:WORDwVersionRequested;WSADATAwsaData;interr;wVersionRequested=MAKEWORD(1,1);err=WSAStartup(wVersionRequested,&wsaData);if(err!=0)return;2、创建socket套接字SOCKETsocket(intaf,inttype,intprotocol);socket函数产生一个socket描述符和相关资源,和特定的协议联系。af表示协议族,如果是TCP/IPorUDP协议,af等于AF_INETtype表示使用什么类型的socket,有三种SOCK_STREAM,SOCK_DGRAM,SOCK_RAW如果是编写基于tcp的应用,使用SOCK_STREAM如果编写基于udp的应用,使用SOCK_DGRAM.protocol默认设为0。具体代码:SOCKETSockSrv=socket(AF_INET,SOCK_STREAM,0);………127.0.0.1本地回路地址,在本机器上发消息……………………3、在服务器端将socket和地址、端口绑定。intbind(SOCKETs,conststructsockaddrFARname,intnamelen);bind函数把产生的socket和指定的地址,端口联系起来,在服务器端使用。其中sockaddr(orSOCKADDR)用于存储ip地址结构(服务器的地址和端口),具体定义为:structsockaddr{unsignedshortsa_family;charsa_data[14];};sa_family表示使用的socket地址族,sa_data[14]定义了socket地址结构的最大存储单元。为了更详细的指定socket地址,可以使用SOCKADDR_IN数据结构,它细分了TCP/IPSockets的地址字段,在程序中可以分别给每位字段赋预定的值,最后在bind时,进行SOCKADDR的强制转换,因为SOCKADDR和SOCKADDR_IN结构大小相等。structsockaddr_in{shortsin_family;unsignedshortsin_port;structin_addrsin_addr;charsin_zero[8];};structin_addr{union{struct{unsignedchars_b1,s_b2,s_b3,s_b4;}S_un_b;struct{unsignedshorts_w1,s_w2;}S_un_w;unsignedlongS_addr;}S_un;};在sockaddr中除sin_family外,其他都是网络字节顺序表示,因此需要显示转换数据的字节顺序,把主机上的字节顺序变换为网络的字节顺序。其中u_shorthtons(u_shorthostshort);是转换无符号短整型数。用于端口号的转换。u_longhtonl(u_longhostlong);是转换无符号长整型数。用于S_addr的转换。namelen表示地址结构的长度。sizeof(sockaddr)即可得到。具体代码如下:SOCKADDR_INaddrSRV;addrSRV.sin_family=AF_INET;addrSRV.sin_addr.S_un.S_addr=ADDR_ANY;addrSRV.sin_port=htons(6000);bind(SockSrv,(SOCKADDR)&addrSRV,sizeof(SOCKADDR));ADDR_ANY表示不详细指定具体的网卡ip地址,它也不需要字节顺序转换,因为值为0,对于非零值则一定需要转换。4、设置socket为监听模式intlisten(SOCKETs,intbacklog);s表示待设定的socket,backlog表示队列的最大等待数。具体代码如下:listen(SockSrv,10);5、开始接受来自客户端的请求SOCKETaccept(SOCKETs,structsockaddrFARaddr,intFARaddrlen);s是处于监听状态的socket,addr是请求连接的客户端的地址信息,addrlen是客户端地址结构的长度。返回一个socket,然后可以使用返回的socket和客户端通信。具体代码如下:SOCKADDR_INaddrClient;intlen=sizeof(SOCKADDR);SOCKETSockConn=accept(SockSrv,(SOCKADDR)&addrClient,&len);这里的len必须进行初始化,否则会产生错误。6、发送信息给客户端intsend(SOCKETs,constcharFARbuf,intlen,intflags);s是应答上客户端的socket,即使用accept返回的socket。buf保存要传送给客户端的信息,是一个字符指针。len保存字符数组的长度。flags指定函数调用的方式。默认使用0。具体代码如下:send(SockConn,"Welcometowww.sun.com!",sizeof("Welcometowww.sun.com!")+1,0);7、接收来自客户端的信息intrecv(SOCKETs,charFARbuf,intlen,intflags);s是和客户端通信的socketbuf存放接收的信息len存放buf的大小flags指定函数的调用方式,默认为0。具体代码如下:charrecvBuf[100];recv(SockConn,recvBuf,100,0);printf("%s\\n",recvBuf);8、通信完毕后要关闭socketintclosesocket(SOCKETs);具体代码如下:closesocket(SockConn);还要在程序的最后关闭WSAintWSACleanup(void);所以intWSAStartup(WORDwVersionRequested,LPWSADATAlpWSAData);和intWSACleanup(void);成对出现。对于以上的函数,要求包含Winsock2.h头文件,同时连接时使用Ws2_32.lib库(在工程->设置--->连接中加入库文件);否则,编译运行会产生错误。9、总结:首先要了解socket编程的原理,在原理的指导下,每一个通信的步骤都对应WindowsSocket的一个函数,调用函数完成预定的通信。四、编写基于TCP/IP的客户端应用程序。1、加载WindowsSocket版本intWSAStartup(WORDwVersionRequested,LPWSADATAlpWSAData);typedefstructWSAData{WORDwVersion;WORDwHighVersion;charszDescription[WSADESCRIPTION_LEN+1];charszSystemStatus[WSASYS_STATUS_LEN+1];unsignedshortiMaxSockets;unsignedshortiMaxUdpDg;charFARlpVendorInfo;}WSADATA,LPWSADATA;成功加载返回0。wVersionRequested的高位字节说明了socket的副版本号,低位字节说明了socket的主版本号。2、创建socket套接字SOCKETsocket(intaf,inttype,intprotocol);SOCKETSockClient=socket(AF_INET,SOCK_STREAM,0);3、使用socket套接字发送建立请求intconnect(SOCKETs,conststructsockaddrFARname,intnamelen);其中s是客户端的套接字,name存储要连接到的服务器端的地址信息,在此函数之前要详细说明各字段的值。具体代码如下:SOCKADDR_INSockSrv;SockSrv.sin_family=AF_INET;SockSrv.sin_addr.S_un.S_addr=inet_addr("127.0.0.1");SockSrv.sin_port=htons(6000);connect(SockClient,(SOCKADDR)&SockSrv,sizeof(SOCKADDR));inet_addr()是将ip地址字符串转换成适合IN_ADDR结构的ip地址。4、接收来自服务器端的信息。具体代码如下:charrecvBuf[100];recv(SockClient,recvBuf,100,0);printf("%s\\n",recvBuf);5、发送信息给服务器。send(SockClient,"Iamchenlei!",sizeof("Iamchenlei!")+1,0);6、可以继续发送和接收。7、通信完毕关闭socketintclosesocket(SOCKETs);具体代码如下:closesocket(SockClient);还有相关操作和服务器端的一样。本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/chenlei5662/archive/2008/08/20/2801228.aspx!!!!!!本windowssocket程序的功能是:在本机上实现虚拟客户端与服务器之间的简单通信,详细代码如下:!!!!!!!!!!!!!!!!在新建的工程(Win32ConsoleApplication)(名为m1)里的SourceFile文件(名为c.c),(假设为客户端的)代码如下:!!!!!#include#include#include#pragmacomment(lib,"wsock32.lib")#defineRECV_PORT2000#defineSEND_PORT3000SOCKETsock;structsockaddr_inServerAddr;DWORDStartSock(){WSADATAWSAData;if(WSAStartup(MAKEWORD(2,2),&WSAData)!=0)//初始化套接字{printf("sockinitfail!\\n");return(-1);}ServerAddr.sin_family=AF_INET;//填充服务器地址及端口号ServerAddr.sin_addr.s_addr=inet_addr("127.0.0.1");ServerAddr.sin_port=htons(RECV_PORT);return(1);}DWORDCreateSocket(){sock=socket(AF_INET,SOCK_STREAM,0);//创建套接字if(sock==SOCKET_ERROR){printf("sockcreatefail!\\n");WSACleanup();return(-1);}return(1);}DWORDCallServer()//呼叫服务器,请求连接{CreateSocket();if(connect(sock,(structsockaddr)&ServerAddr,sizeof(ServerAddr))==SOCKET_ERROR){printf("Connectfail\\n");closesocket(sock);return(-1);}return(1);}DWORDTCPSend(chardata[])//向服务器方发送数据{intlength;length=send(sock,data,strlen(data),0);if(length<=0){printf("senddataerror!\\n");closesocket(sock);WSACleanup();return(-1);}return(1);}intmain(){charbuff[80];intnum,i;StartSock();while(CallServer()==-1){printf("connecterror!");}printf("connectok!\\n");printf("pressanykeytosend!");getchar();for(;;){printf("Inputthenumberofmessagetosent:(0-exit)");memset(buff,0,80);scanf("%d",&num);if(num<=0)break;for(i=0;i#include#include#pragmacomment(lib,"wsock32.lib")#defineRECV_PORT2000#defineSEND_PORT3000SOCKETsock;structsockaddr_inServerAddr;DWORDStartSock(){WSADATAWSAData;if(WSAStartup(MAKEWORD(2,2),&WSAData)!=0)//初始化套接字{printf("sockinitfail!\\n");return(-1);}ServerAddr.sin_family=AF_INET;//填充服务器地址及端口号ServerAddr.sin_addr.s_addr=inet_addr("24.85.151.22");ServerAddr.sin_port=htons(RECV_PORT);return(1);}DWORDCreateSocket(){sock=socket(AF_INET,SOCK_STREAM,0);//创建套接字if(sock==SOCKET_ERROR){printf("sockcreatefail!\\n");WSACleanup();return(-1);}return(1);}DWORDCallServer()//呼叫服务器,请求连接{CreateSocket();if(connect(sock,(structsockaddr)&ServerAddr,sizeof(ServerAddr))==SOCKET_ERROR){printf("Connectfail\\n");closesocket(sock);return(-1);}return(1);}DWORDTCPSend(chardata[])//向服务器方发送数据{intlength;length=send(sock,data,strlen(data),0);if(length<=0){printf("senddataerror!\\n");closesocket(sock);WSACleanup();return(-1);}return(1);}intmain(){charbuff[80];intnum,i;StartSock();while(CallServer()==-1){printf("connecterror!");}printf("connectok!\\n");printf("pressanykeytosend!");getchar();for(;;){printf("Inputthenumberofmessagetosent:(0-exit)");memset(buff,0,80);scanf("%d",&num);if(num<=0)break;for(i=0;i


  • 编号:1700774250
  • 分类:其他文档
  • 软件: wps,office word
  • 大小:17页
  • 格式:docx
  • 风格:商务
  • PPT页数:35751 KB
  • 标签:

广告位推荐

相关其他文档更多>