-/* $Id: httpd.js,v 1.52 2007/01/17 17:16:20 mmondor Exp $ */
+/* $Id: httpd.js,v 1.53 2007/01/25 17:47:44 mmondor Exp $ */
/*
* Copyright (c) 2005-2006, Matthew Mondor
* Server identification
*/
const SERVER_VERSION = 'mmondor_js_httpd/0.2.1 (NetBSD)';
-const SERVER_CVSID = '$Id: httpd.js,v 1.52 2007/01/17 17:16:20 mmondor Exp $';
+const SERVER_CVSID = '$Id: httpd.js,v 1.53 2007/01/25 17:47:44 mmondor Exp $';
'Your browser has exceeded its maximum ' +
'allowed number of concurrent ' +
'connections.');
- fd.close();
+ try {
+ fd.close();
+ } catch (x) {}
continue;
}
/*
Syslog.log(Syslog.LOG_NOTICE,
'* ' + x +
' at accept(2)');
- try {
- fd.close();
- } catch (x) {}
+ /* No need to close fd */
}
}
continue;