X-Git-Url: https://git.piment-noir.org/?p=deb_shairplay.git;a=blobdiff_plain;f=debian%2Fpatches%2Ffix-ipv4-ipv6-race.patch;fp=debian%2Fpatches%2Ffix-ipv4-ipv6-race.patch;h=94333f78b7e8311f53ea8ec48958444ff92d79a8;hp=0000000000000000000000000000000000000000;hb=6c0346390f001f8916a45f46eccd047a019258ef;hpb=15c988f7c658c689d3485ca35ccbbafa736df98c diff --git a/debian/patches/fix-ipv4-ipv6-race.patch b/debian/patches/fix-ipv4-ipv6-race.patch new file mode 100644 index 0000000..94333f7 --- /dev/null +++ b/debian/patches/fix-ipv4-ipv6-race.patch @@ -0,0 +1,13 @@ +--- a/src/lib/httpd.c ++++ b/src/lib/httpd.c +@@ -237,7 +237,8 @@ struct httpd_s { + continue; + } + } +- if (httpd->server_fd6 != -1 && FD_ISSET(httpd->server_fd6, &rfds)) { ++ if (httpd->open_connections < httpd->max_connections && ++ httpd->server_fd6 != -1 && FD_ISSET(httpd->server_fd6, &rfds)) { + ret = httpd_accept_connection(httpd, httpd->server_fd6, 1); + if (ret == -1) { + break; +