mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
Add support for dynamically regenerated web-pages. Limit to 1 concurrent TCP connection for now.
This commit is contained in:
+5
-5
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user