Limit the maximum number of simultaneous connections to the cfs webserver to the maximum number of open files.

This commit is contained in:
oliverschmidt 2007-11-28 00:00:29 +00:00
parent 632240da25
commit bcfc99fa5b
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
* *
* Author: Oliver Schmidt <ol.sc@web.de> * Author: Oliver Schmidt <ol.sc@web.de>
* *
* $Id: contiki-conf.h,v 1.9 2007/11/26 21:52:26 oliverschmidt Exp $ * $Id: contiki-conf.h,v 1.10 2007/11/28 00:00:29 oliverschmidt Exp $
*/ */
#ifndef __CONTIKI_CONF_H__ #ifndef __CONTIKI_CONF_H__
@ -46,6 +46,6 @@
#define UIP_CONF_LOGGING 1 #define UIP_CONF_LOGGING 1
#define WEBSERVER_CONF_CGI_CONNS UIP_CONNS #define WEBSERVER_CONF_CGI_CONNS UIP_CONNS
#define WEBSERVER_CONF_CFS_CONNS UIP_CONNS #define WEBSERVER_CONF_CFS_CONNS 8
#endif /* __CONTIKI_CONF_H__ */ #endif /* __CONTIKI_CONF_H__ */