9347f3
diff -up cups-2.0.2/cups/http-addr.c.freebind cups-2.0.2/cups/http-addr.c
9347f3
--- cups-2.0.2/cups/http-addr.c.freebind	2015-02-10 14:46:33.000000000 +0100
9347f3
+++ cups-2.0.2/cups/http-addr.c	2015-02-10 14:50:35.074759141 +0100
9347f3
@@ -186,6 +186,10 @@ httpAddrListen(http_addr_t *addr,	/* I -
9347f3
   val = 1;
9347f3
   setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, CUPS_SOCAST &val, sizeof(val));
Tim Waugh f75ce2
 
Tim Waugh f75ce2
+#ifdef __linux
9347f3
+  setsockopt(fd, IPPROTO_IP, IP_FREEBIND, CUPS_SOCAST &val, sizeof(val));
Tim Waugh f75ce2
+#endif /* __linux */
Tim Waugh f75ce2
+
9347f3
 #ifdef IPV6_V6ONLY
9347f3
   if (addr->addr.sa_family == AF_INET6)
9347f3
     setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, CUPS_SOCAST &val, sizeof(val));
9347f3
diff -up cups-2.0.2/scheduler/listen.c.freebind cups-2.0.2/scheduler/listen.c