mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
14 lines
344 B
C
14 lines
344 B
C
$NetBSD: patch-lib_nsock.c,v 1.1 2015/06/15 01:29:40 rodent Exp $
|
|
|
|
--- lib/nsock.c.orig 2014-08-12 15:00:01.000000000 +0000
|
|
+++ lib/nsock.c
|
|
@@ -81,7 +81,7 @@ int nsock_unix(const char *path, unsigne
|
|
if(flags & NSOCK_UDP)
|
|
return sock;
|
|
|
|
- if(listen(sock, 3) < 0) {
|
|
+ if(listen(sock, 128) < 0) {
|
|
close(sock);
|
|
return NSOCK_ELISTEN;
|
|
}
|