IMPORT_C int socket(int, int, int);
Description
Parameters
int |
Specifies the address family used in the communications domain.
|
int |
Type of socket.
|
int |
Protocol used with that socket.
|
|
Return value
int |
On Success, non-negative integer, the socket file descriptor. On Failure, returns -1, eerno may be set.
|
|