Home
last modified time | relevance | path

Searched refs:LWIP_HTTPD_MAX_CGI_PARAMETERS (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/include/lwip/apps/
Dhttpd_opts.h130 #if !defined LWIP_HTTPD_MAX_CGI_PARAMETERS || defined __DOXYGEN__
131 #define LWIP_HTTPD_MAX_CGI_PARAMETERS 16 macro
/third_party/lwip/src/apps/http/
Dhttpd.c267 char *params[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Params extracted from the request URI */
268 char *param_vals[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Values for each extracted param */
344 static char *http_cgi_params[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Params extracted from the request U…
345 static char *http_cgi_param_vals[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Values for each extracted param…
706 for (loop = 0; (loop < LWIP_HTTPD_MAX_CGI_PARAMETERS) && pair; loop++) { in extract_uri_parameters()