Use AI_PASSIVE flag to make tinyproxy listen on wildcard interface
Signed-off-by: Michael Adam <obnox@samba.org>
This commit is contained in:
parent
410eaf107c
commit
ce149cc7a6
@ -178,6 +178,7 @@ int listen_sock (uint16_t port, socklen_t * addrlen)
|
||||
memset (&hints, 0, sizeof (struct addrinfo));
|
||||
hints.ai_family = AF_UNSPEC;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
hints.ai_flags = AI_PASSIVE;
|
||||
|
||||
snprintf (portstr, sizeof (portstr), "%d", port);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user