20 neighbors with status and routes
This commit is contained in:
parent
0a14fd6a18
commit
d3eb7da297
|
@ -79,7 +79,7 @@ AUTOSTART_PROCESSES(&border_router_process,&webserver_nogui_process);
|
||||||
*/
|
*/
|
||||||
#define WEBSERVER_CONF_LOADTIME 0
|
#define WEBSERVER_CONF_LOADTIME 0
|
||||||
#define WEBSERVER_CONF_FILESTATS 0
|
#define WEBSERVER_CONF_FILESTATS 0
|
||||||
#define WEBSERVER_CONF_NEIGHBOR_STATUS 0
|
#define WEBSERVER_CONF_NEIGHBOR_STATUS 1
|
||||||
/* Adding links requires a larger RAM buffer. To avoid static allocation
|
/* Adding links requires a larger RAM buffer. To avoid static allocation
|
||||||
* the stack can be used for formatting; however tcp retransmissions
|
* the stack can be used for formatting; however tcp retransmissions
|
||||||
* and multiple connections can result in garbled segments.
|
* and multiple connections can result in garbled segments.
|
||||||
|
|
|
@ -35,6 +35,12 @@
|
||||||
#define UIP_FALLBACK_INTERFACE rpl_interface
|
#define UIP_FALLBACK_INTERFACE rpl_interface
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Save some memory for the sky platform. */
|
||||||
|
#undef NBR_TABLE_CONF_MAX_NEIGHBORS
|
||||||
|
#define NBR_TABLE_CONF_MAX_NEIGHBORS 20
|
||||||
|
#undef UIP_CONF_MAX_ROUTES
|
||||||
|
#define UIP_CONF_MAX_ROUTES 20
|
||||||
|
|
||||||
#ifndef QUEUEBUF_CONF_NUM
|
#ifndef QUEUEBUF_CONF_NUM
|
||||||
#define QUEUEBUF_CONF_NUM 4
|
#define QUEUEBUF_CONF_NUM 4
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue