From a91fe3ea983d83c1db380aa9328f8cb43064ddd3 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Tue, 27 Nov 2007 22:03:29 +0000 Subject: [PATCH] Limit the maximum number of simultaneous connections to the cfs webserver to three because there's not enough memory left on the heap for more open files anyway - ProDOS 8 needs 1kB of page-aligned heap per open file :-( --- platform/apple2enh/contiki-conf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/apple2enh/contiki-conf.h b/platform/apple2enh/contiki-conf.h index b3a9225af..de0b16f2c 100644 --- a/platform/apple2enh/contiki-conf.h +++ b/platform/apple2enh/contiki-conf.h @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-conf.h,v 1.6 2007/11/26 21:38:32 oliverschmidt Exp $ + * $Id: contiki-conf.h,v 1.7 2007/11/27 22:03:29 oliverschmidt Exp $ */ #ifndef __CONTIKI_CONF_H__ @@ -46,5 +46,6 @@ #define UIP_CONF_LOGGING 1 #define WEBSERVER_CONF_CGI_CONNS UIP_CONNS +#define WEBSERVER_CONF_CFS_CONNS 3 #endif /* __CONTIKI_CONF_H__ */