I'm learning C socket programming. When would you use bind() on the client-side? What types of program will need it and why? Where can I find an example?
|
|
An example would be the data connection of an active FTP connection. In this case, the server connects from its port 20 to the IP and port specified by a PORT or EPRT command. |
|||
|
|
On the client side, you would only use bind if you want to use a specific client-side port, which is rare. Usually on the client, you specify the IP address and port of the server machine, and the OS will pick which port you will use. Generally you don't care, but in some cases, there may be a firewall on the client that only allows outgoing connections on certain pors. In that case, you will need to bind to a specific port before the connection attempt will work. |
|||||||||
|
|
A classic example of a client program using The NFS protocol has similar trust relationships, and similarly the client makes connections from a low port number, using Another example is IRC clients that allow the user to specify a particular source IP address to connect from. This is to accomodate users with many IP addresses assigned to their machine, each with a different "vanity" domain name assigned to it. Choosing which IP to connect from (with |
|||
|
|
|
The most common use of bind() is to limit the addresses that the socket listens on. For example, if you have a server with two network interfaces and you only want to listen on one of them then bind() is how you do this. Or if you want to only listen on localhost for testing or for something that should be local to the system, then you could also use bind() for that. On a *nix system, |
|||||||
|
|
bind function is one of "key" functions. It associates your socket (server or client) with address (ip + port). As for Windows you must use bind for WinSockets. There is good book about it "Network Programming for Microsoft Windows" by Anthony Jones and Jim Ohlund. |
||||
|
Bind can be used to attach names to a sockets. Thus, say you create a software that uses a particular TCP port, you need to bind it and then, you will know the TCP port it is using. |
||||
|
|