accept — Accept connect request for a listening socket. [thread-safe].
bind — Assign a local address and port to a socket. [thread-safe].
closesocket — Close socket and release socket descriptor. [thread-safe].
connect — Connect a socket to a remote host. [thread-safe].
gethostbyname — Retrieve host IP address from host name. [thread-safe].
getpeername — Retrieve IP address and port number of the endpoint node. [thread-safe].
getsockname — Retrieve local IP address and port number. [thread-safe].
getsockopt — Retrieve options for the socket. [thread-safe].
ioctlsocket — Control IO mode of a socket. [thread-safe].
listen — Set a socket in a listening mode. [thread-safe].
recv — Receive data on already connected socket. [thread-safe].
recvfrom — Receive data from endpoint node. [thread-safe].
recvmsg — Receive a message from a socket. [thread-safe].
select — Check the status of one or more sockets. [thread-safe].
send — Send data on already connected socket. [thread-safe].
sendto — Send data to endpoint node. [thread-safe].
sendmsg — Send a message to endpoint node. [thread-safe].
setsockopt — Manipulate options for the socket. [thread-safe].
socket — Create a communication endpoint called socket. [thread-safe].
inet_addr — Convert from text address to a network address. [thread-safe].
inet_aton — Convert from text address to a network address. [thread-safe].
inet_ntoa — Convert from network address to a text string. [not_thread-safe].
inet_pton — Convert from text address to a binary network address. [thread-safe].
inet_ntop — Convert from binary network address to a text string. [thread-safe].