How can I listen on more than one port at a time?



How can I listen on more than one port at a time?..

Answer / chaitanya

The best way to do this is with the select() call. This tells the kernel to let you know when a socket is available for use. You can have one process do i/o with multiple sockets with this call. If you want to wait for a connect on sockets 4, 6 and 10 you might execute the following code snippet:

fd_set socklist;

FD_ZERO(&socklist); /* Always clear the structure first. */

FD_SET(4, &socklist);

FD_SET(6, &socklist);

FD_SET(10, &socklist);

if (select(11, NULL, &socklist, NULL, NULL) < 0)

perror("select");

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Socket Programming Interview Questions

system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?

0 Answers  


How do I use TCP_NODELAY?

0 Answers  


How can I write a multi-homed server?

0 Answers  


How can I bind() to a port number < 1024?

1 Answers  


How can I tell when a socket is closed on the other end?

0 Answers  






How can I read ICMP errors from connected UDP sockets?

1 Answers  


What is a socket set used for?

0 Answers  


How many socket connections can a server handle?

0 Answers  


How does unix socket work?

0 Answers  


What are raw sockets?

4 Answers   Axis Technologies,


What is a deep well socket?

0 Answers  


Why sockets are used?

0 Answers  


Categories