-/* $Id: httpd.js,v 1.65 2005/07/15 14:17:56 mmondor Exp $ */
+/* $Id: httpd.js,v 1.66 2005/07/15 14:20:08 mmondor Exp $ */
/*
* Copyright (c) 2005, Matthew Mondor
* Server identification
*/
SERVER_VERSION = 'mmondor_js_httpd/0.0.1 (NetBSD)';
-SERVER_CVSID = '$Id: httpd.js,v 1.65 2005/07/15 14:17:56 mmondor Exp $';
+SERVER_CVSID = '$Id: httpd.js,v 1.66 2005/07/15 14:20:08 mmondor Exp $';
} else
fd = file;
for (;;) {
- data = fd.read(16384);
+ data = fd.read(65536);
if (data.length == 0)
break;
contents += data;