summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-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
-rw-r--r--include/version.h2
7 files changed, 8 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index 13279ed2..a8f69636 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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)"