Add support for dynamically regenerated web-pages. Limit to 1 concurrent TCP connection for now.

This commit is contained in:
logicog
2025-08-06 11:24:36 +02:00
parent 3841eea919
commit fff09a0521
5 changed files with 153 additions and 30 deletions
+5 -5
View File
@@ -90,25 +90,25 @@ typedef uint16_t u16_t;
typedef unsigned short uip_stats_t;
/**
* Maximum number of TCP connections.
* Maximum number of TCP connections. TODO: Increase this, but also make the socket state/buffer per-connection.
*
* \hideinitializer
*/
#define UIP_CONF_MAX_CONNECTIONS 40
#define UIP_CONF_MAX_CONNECTIONS 1
/**
* Maximum number of listening TCP ports.
* Maximum number of listening TCP ports. TODO: increase this!
*
* \hideinitializer
*/
#define UIP_CONF_MAX_LISTENPORTS 40
#define UIP_CONF_MAX_LISTENPORTS 1
/**
* uIP buffer size.
*
* \hideinitializer
*/
#define UIP_CONF_BUFFER_SIZE 2000
#define UIP_CONF_BUFFER_SIZE 2200
/**
* CPU byte order.