in reply to Re: how to set socket recv timeout in architecture independent manner?
in thread how to set socket recv timeout in architecture independent manner?

Net::Server or POE look like great tools but they would be an overkill for such a small operation. From what I saw, they might be useful for building a more complex app or a generic base. But for a listen-reply server IO::Socket::INET gives all that is needed, which is not much - send and recv.

Also there are a many other programs of mine which need to have this feature, all of which are already using IO::Socket::INET.

  • Comment on Re^2: how to set socket recv timeout in architecture independent manner?

Replies are listed 'Best First'.
Re^3: how to set socket recv timeout in architecture independent manner?
by Anonymous Monk on May 05, 2009 at 21:03 UTC
    overkill? Maybe using a computer is overkill :D