Most efficient way to handle a client connection (socket programming)

后端 未结 7 678
走了就别回头了
走了就别回头了 2021-01-18 11:26

For every single tutorials and examples I have seen on the internet for Linux/Unix socket tutorials, the server side code always involves an infinite loop that checks for cl

相关标签:
7条回答
  • 2021-01-18 11:49

    In addition to what has already been posted, it's fairly easy to see what is going on with a debugger. You will be able to single-step through until you execute the accept() line, upon which the 'sigle-step' highlight will disappear and the app will run on - the next line is not reached. If you put a breadkpoint on the next line, it will not fire until a client connects.

    0 讨论(0)
  • 2021-01-18 11:54

    When you are implementing a server that listens for possibly infinite connections, there is imo no way around some sort of infinite loops. Usually this is not a problem at all, because when your socket is not marked as non-blocking, the call to accept() will block until a new connection arrives. Due to this blocking, no system resources are wasted.

    Other libraries that provide like an event-based system are ultimately implemented in the way described above.

    0 讨论(0)
  • 2021-01-18 11:58

    The infinite loop is there to maintain the server's running state, so when a client connection is accepted, the server won't quit immediately afterwards, instead it'll go back to listening for another client connection.

    The listen() call is a blocking one - that is to say, it waits until it receives data. It does this is an extremely efficient way, using zero system resources (until a connection is made, of course) by making use of the operating systems network drivers that trigger an event (or hardware interrupt) that wakes the listening thread up.

    0 讨论(0)
  • 2021-01-18 11:59

    the infinite loop in those examples is already efficient. the call to accept() is a blocking call: the function does not return until there is a client connecting to the server. code execution for the thread which called the accept() function is halted, and does not take any processing power.

    think of accept() as a call to join() or like a wait on a mutex/lock/semaphore.

    of course, there are many other ways to handle incoming connection, but those other ways deal with the blocking nature of accept(). this function is difficult to cancel, so there exists non-blocking alternatives which will allow the server to perform other actions while waiting for an incoming connection. one such alternative is using select(). other alternatives are less portable as they involve low-level operating system calls to signal the connection through a callback function, an event or any other asynchronous mechanism handled by the operating system...

    0 讨论(0)
  • 2021-01-18 12:02

    For C++ you could look into boost.asio. You could also look into e.g. asynchronous I/O functions. There is also SIGIO.

    Of course, even when using these asynchronous methods, your main program still needs to sit in a loop, or the program will exit.

    0 讨论(0)
  • 2021-01-18 12:11

    Here's a good overview of what techniques are available - The C10K problem.

    0 讨论(0)
提交回复
热议问题