Prefer ReuseAddr over Reuse, with IO::Socket::INET
Reuse is deprecated and ReuseAddr is prefered, according to documentation. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
@@ -173,7 +173,7 @@ sub clientstart
|
||||
LocalPort => $self->proxy_port,
|
||||
Proto => "tcp",
|
||||
Listen => SOMAXCONN,
|
||||
Reuse => 1
|
||||
ReuseAddr => 1
|
||||
);
|
||||
|
||||
if ($proxy_sock) {
|
||||
|
||||
Reference in New Issue
Block a user