LWIP_HTTPD_MAX_REQ_LENGTH is only used within LwIP.
 
Symbols
loading...
Files
loading...

LWIP_HTTPD_MAX_REQ_LENGTH macro

Defines the maximum length of a HTTP request line (up to the first CRLF, copied from pbuf into this a global buffer when pbuf- or packet-queues are received - otherwise the input pbuf is used directly)

Syntax

#define LWIP_HTTPD_MAX_REQ_LENGTH LWIP_MIN(1023, (LWIP_HTTPD_REQ_QUEUELEN * PBUF_POOL_BUFSIZE))

References

LocationText
httpd_opts.h:273
#define LWIP_HTTPD_MAX_REQ_LENGTH LWIP_MIN(1023, (LWIP_HTTPD_REQ_QUEUELEN * PBUF_POOL_BUFSIZE))
httpd.c:166
static char httpd_req_buf[LWIP_HTTPD_MAX_REQ_LENGTH + 1];
httpd.c:1995
data_len = LWIP_MIN(hs->req->tot_len, LWIP_HTTPD_MAX_REQ_LENGTH);
httpd_opts.h:266
#define LWIP_HTTPD_REQ_BUFSIZE LWIP_HTTPD_MAX_REQ_LENGTH