Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 407 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 407 Bytes

C++ Winsock Client Architecture

Client Functions TCP

initialize WSA - WSAStartup() Create a socket - socket() Connect to the server - connect() Send and recive data - recv(), send(), recvfrom(), sendto() Disconnect - closesocket()

Client Functions UDP

initialize WSA - WSAStartup() Create a socket - socket() Send and recive data - recv(), send(), recvfrom(), sendto() Disconnect - closesocket()