Skip to content

theEDdanny/Winsock-Server-Architecture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

C++ Winsock Server Architecture

Windows server for TCP or UDP written in C++.

Server Functions for TCP

initialize WSA - WSAStartup() Create a socket - socket() Bind the socket - bind() Listen on the socket - listen() Accept a connection - accept(), connect() Send and recive data - recv(), send(), recvfrom(), sendto() Disconnect - closesocket()

Server Functions for UDP

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

About

Basic Server Architecture for windows API's

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages