in reply to •Re: HTTP:Daemon : Address already in use
in thread HTTP:Daemon : Address already in use

Note that use of Reuse have been deprecated in latest Perls (5.6.1 ???). From perldoc IO::Socket::INET (base class of HTTP::Daemon):
In addition to the key-value pairs accepted by IO::Socket, "IO::Socket::INET" provides. .... .... ReuseAddr Set SO_REUSEADDR before binding Reuse Set SO_REUSEADDR before binding (deprecated, prefer ReuseAddr) ReusePort Set SO_REUSEPORT before binding

--
Ilya Martynov (http://martynov.org/)

Replies are listed 'Best First'.
Re: Re: ?Re: HTTP:Daemon : Address already in use
by rugwuk (Initiate) on Jun 14, 2002 at 22:00 UTC

    Thx i'll try those tips.

    Richard