*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Fri, 8 Jul 2005 17:57:28 +0000 (17:57 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Fri, 8 Jul 2005 17:57:28 +0000 (17:57 +0000)
tests/js-test/js/httpd/httpd.js

index 9fcbe41..d980a5d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: httpd.js,v 1.31 2005/07/08 05:29:53 mmondor Exp $ */
+/* $Id: httpd.js,v 1.32 2005/07/08 17:57:28 mmondor Exp $ */
 
 /*
  * Copyright (c) 2005, Matthew Mondor
  *   subcontext's root.  In the case of a single embedded dynamic application,
  *   I could eval() in the code to include it once, and invoke its functions
  *   when certain paths are invoked.
+ * - Possibly limit rate of connections per address like I did in
+ *   mmftpd/mmsmtpd/mmpop3d/mmspawnd, a requested feature of 3s4i.
+ *   If enabling this, it probably should be per-vhost configurable.
+ *   I'm not sure HTTP protocol is well suited to this type of limiting,
+ *   some testing will be required.
  */
 
 
@@ -90,7 +95,7 @@ eval(file_read('root.js'));           /* Root object for virtual chroot(2) */
  * Server identification
  */
 SERVER_VERSION                 = 'mmondor_js_httpd/0.0.1 (NetBSD)';
-SERVER_CVSID   = '$Id: httpd.js,v 1.31 2005/07/08 05:29:53 mmondor Exp $';
+SERVER_CVSID   = '$Id: httpd.js,v 1.32 2005/07/08 17:57:28 mmondor Exp $';