Interview Questions

What this function socket() does?

Beginners Guide to Sockets


(Continued from previous question...)

What this function socket() does?

Socket Creation Using socket()

#include &ltsys/types.h>
#include &ltsys/socket.h>

int socket(int af, int type, int protocol)
socket() is very similar to socketpair() except that only one socket is created instead of two. This is most commonly used if the process you wish to communicate with is not a child process. The af, type, and protocol fields are used just as in the socketpair() system call.

On success, a file descriptor to the socket is returned. On failure, -1 is returned and errno describes the problem.

(Continued on next question...)

Other Interview Questions