in reply to Re^2: non-blocking listen on a tcp server
in thread non-blocking listen on a tcp server

Thanks alot folks. You're giving me good ideas.

ikegami, I like the Coro option - the code is neat. I'm still trying to get my head around it though.

The example doesn't appear to have the forking server but I need my server to handle multiple client connection simultaneously.

Is that still an option when using Coro?
  • Comment on Re^3: non-blocking listen on a tcp server

Replies are listed 'Best First'.
Re^4: non-blocking listen on a tcp server
by ikegami (Patriarch) on Jun 09, 2010 at 23:40 UTC
    forks also provides async, but forks instead of creating threads.