diff options
Diffstat (limited to 'emu')
| -rw-r--r-- | emu/FreeBSD/ipif.c | 2 | ||||
| -rw-r--r-- | emu/NetBSD/ipif.c | 2 | ||||
| -rw-r--r-- | emu/Nt/ipif.c | 2 | ||||
| -rw-r--r-- | emu/OpenBSD/ipif.c | 2 | ||||
| -rw-r--r-- | emu/port/ipif-posix.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/emu/FreeBSD/ipif.c b/emu/FreeBSD/ipif.c index 04d5bbbd..f6c621e8 100644 --- a/emu/FreeBSD/ipif.c +++ b/emu/FreeBSD/ipif.c @@ -186,7 +186,7 @@ so_listen(int fd) int r; osenter(); - r = listen(fd, 5); + r = listen(fd, 256); osleave(); if(r < 0) oserror(); diff --git a/emu/NetBSD/ipif.c b/emu/NetBSD/ipif.c index 04d5bbbd..f6c621e8 100644 --- a/emu/NetBSD/ipif.c +++ b/emu/NetBSD/ipif.c @@ -186,7 +186,7 @@ so_listen(int fd) int r; osenter(); - r = listen(fd, 5); + r = listen(fd, 256); osleave(); if(r < 0) oserror(); diff --git a/emu/Nt/ipif.c b/emu/Nt/ipif.c index 048ce542..4e3dba23 100644 --- a/emu/Nt/ipif.c +++ b/emu/Nt/ipif.c @@ -219,7 +219,7 @@ so_listen(int fd) int r; osenter(); - r = listen(fd, 5); + r = listen(fd, 256); osleave(); if(r < 0) oserror(); diff --git a/emu/OpenBSD/ipif.c b/emu/OpenBSD/ipif.c index 04d5bbbd..f6c621e8 100644 --- a/emu/OpenBSD/ipif.c +++ b/emu/OpenBSD/ipif.c @@ -186,7 +186,7 @@ so_listen(int fd) int r; osenter(); - r = listen(fd, 5); + r = listen(fd, 256); osleave(); if(r < 0) oserror(); diff --git a/emu/port/ipif-posix.c b/emu/port/ipif-posix.c index 589d455a..5af79f50 100644 --- a/emu/port/ipif-posix.c +++ b/emu/port/ipif-posix.c @@ -194,7 +194,7 @@ so_listen(int fd) int r; osenter(); - r = listen(fd, 5); + r = listen(fd, 256); osleave(); if(r < 0) oserror(); |
