diff options
| author | forsyth <forsyth@vitanuova.com> | 2009-08-06 22:10:34 +0100 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2009-08-06 22:10:34 +0100 |
| commit | c29b1ebe0080f89b861e1aab934ab57e93338388 (patch) | |
| tree | dc359595f8ffcc0fa809f711bc4d6da618776573 | |
| parent | 9bca6be9bfa93b52aeefad1e0ea9965d1fa5c53c (diff) | |
20090806-2210
| -rw-r--r-- | CHANGES | 2 | ||||
| -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 | ||||
| -rw-r--r-- | include/version.h | 2 |
7 files changed, 8 insertions, 6 deletions
@@ -1,3 +1,5 @@ +20090806 + increase `backlog' value in all listen calls in hosted Inferno (emu/*/ipif*.c) [powerman] 20090805 further checking added to libinterp/keyring.c: rejects incorrect states and out of bounds values of f->n add lib/emptydirs and mkdirs target to /mkfile (utils/mkdir needs to be changed for Windows use) 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(); diff --git a/include/version.h b/include/version.h index b50522e6..0cfddbce 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20090805)" +#define VERSION "Fourth Edition (20090806)" |
