mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
cb1323a95c
a/quota-4.04-x86_64-2.txz: Rebuilt. Fixed high CPU usage. Thanks to allend. ap/nano-3.2-x86_64-1.txz: Upgraded. x/libXcm-0.5.4-x86_64-1.txz: Upgraded. x/xcm-0.5.4-x86_64-1.txz: Upgraded.
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
diff -up quota-4.04/svc_socket.c.orig quota-4.04/svc_socket.c
|
|
--- quota-4.04/svc_socket.c.orig 2017-09-05 10:04:16.000000000 -0400
|
|
+++ quota-4.04/svc_socket.c 2018-05-12 14:46:44.813388914 -0400
|
|
@@ -118,6 +118,15 @@ static int svc_create_sock(struct addrin
|
|
return -1;
|
|
}
|
|
|
|
+ if (ai->ai_family == AF_INET6) {
|
|
+ if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY,
|
|
+ &optval, sizeof(optval)) < 0) {
|
|
+ errstr(_("Cannot set ipv6 socket options: %s\n"), strerror(errno));
|
|
+ close(fd);
|
|
+ return -1;
|
|
+ }
|
|
+ }
|
|
+
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval)) < 0) {
|
|
errstr(_("Cannot set socket options: %s\n"), strerror(errno));
|
|
close(fd);
|
|
@@ -129,6 +138,15 @@ static int svc_create_sock(struct addrin
|
|
close(fd);
|
|
return -1;
|
|
}
|
|
+
|
|
+ if (ai->ai_protocol == IPPROTO_TCP) {
|
|
+ if (listen(fd, SOMAXCONN) < 0) {
|
|
+ errstr(_("Cannot listen to address: %s\n"), strerror(errno));
|
|
+ close(fd);
|
|
+ return -1;
|
|
+ }
|
|
+ }
|
|
+
|
|
return fd;
|
|
}
|
|
|