How should I choose a port number for my server?
Answer / chaitanya
The list of registered port assignments can be found in STD 2 or RFC 1700. Choose one that isn't already registered, and isn't in /etc/services on your system. It is also a good idea to let users customize the port number in case of conflicts with other un- registered port numbers in other servers. The best way of doing this is hardcoding a service name, and using getservbyname() to lookup the actual port number. This method allows users to change the port your server binds to by simply editing the /etc/services file.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we need sockets?
What exactly is a socket?
Why do I get connection refused when the server is not running?
What exactly does SO_REUSEADDR do?
How can my client work through a firewall/proxy server?
Can a single socket port be used for multiple applications?
How can I write a multi-homed server?
What is the difference between a socket and a port?
How can I read only one character at a time?
Is a socket a file?
Why do I keep getting EINTR from the socket calls?
Where can a get a library for programming sockets?