Skip to content

Instantly share code, notes, and snippets.

@martinomburajr
Last active May 18, 2019 04:49
Show Gist options
  • Select an option

  • Save martinomburajr/c0e901dce38a19e882a1963d360f6ef9 to your computer and use it in GitHub Desktop.

Select an option

Save martinomburajr/c0e901dce38a19e882a1963d360f6ef9 to your computer and use it in GitHub Desktop.
Socket API for Unix and Windows
// Unix implementation of socket() system call
int socket(int domain, int type, int protocol);
// Windows implementation of socket() system call
SOCKET WSAAPI socket(int af, int type, int protocol);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment