summaryrefslogtreecommitdiff
path: root/emu
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2009-08-06 22:10:34 +0100
committerforsyth <forsyth@vitanuova.com>2009-08-06 22:10:34 +0100
commitc29b1ebe0080f89b861e1aab934ab57e93338388 (patch)
treedc359595f8ffcc0fa809f711bc4d6da618776573 /emu
parent9bca6be9bfa93b52aeefad1e0ea9965d1fa5c53c (diff)
20090806-2210
Diffstat (limited to 'emu')
-rw-r--r--emu/FreeBSD/ipif.c2
-rw-r--r--emu/NetBSD/ipif.c2
-rw-r--r--emu/Nt/ipif.c2
-rw-r--r--emu/OpenBSD/ipif.c2
-rw-r--r--emu/port/ipif-posix.c2
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();