Submitted by Mi-K on Thursday, April 19, 2012 - 4:07pm
The bind() system call function is used with socket().
It assigns the address of the second argument to the file descriptor retrieved by socket().
Of course before using bind(), we must have a valid fd generated by socket().
Submitted by Mi-K on Thursday, April 19, 2012 - 11:33am
The socket() system call function will help us to create an end point.
This end point will allow for example to connect a client to a server.
Indeed, both of them (client and server) will have a socket() system call function on their implementation.