socket function winsock

int socket(
  1. int af,
  2. int type,
  3. int protocol
)

The socket function creates a socket that is bound to a specific transport service provider.

SOCKET socket(
  int af,
  int type,
  int protocol
);

Implementation

int socket(int af, int type, int protocol) => _socket(af, type, protocol);