int s; // Descriptor index.
s = socket(AF_INET, SOCK_STREAM, 0);
// Creates a TCP socket in the per-process descriptor table
// Returns the index in the per-process descriptor table
|
|
|
|
In other words:
|