Lines Matching defs:param
268 char *param_vals[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Values for each extracted param */
345 static char *http_cgi_param_vals[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Values for each extracted param */
525 * @param pcb altcp_pcb to send
526 * @param ptr Data to send
527 * @param length Length of data to send (in/out: on return, contains the
529 * @param apiflags directly passed to tcp_write
592 * @param pcb the tcp pcb to reset callbacks
593 * @param hs connection state to free
642 * @param pcb the tcp pcb to reset callbacks
643 * @param hs connection state to free
683 * @param hs http connection state
684 * @param params pointer to the NULL-terminated parameter string from the URI
756 * @param hs http connection state
1571 * @param pcb the pcb to send data
1572 * @param hs connection state
1644 * @param hs http connection state
1645 * @param error_nr HTTP error number
1685 * @param uri pointer that receives the actual file name URI
1739 * @param hs http connection state
1740 * @param p pbuf to pass to the application
1789 * @param p The input pbuf (containing the POST header and body).
1790 * @param hs The http connection state.
1791 * @param data HTTP request (header and part of body) from input pbuf(s).
1792 * @param data_len Size of 'data'.
1793 * @param uri The HTTP URI parsed from input pbuf(s).
1794 * @param uri_end Pointer to the end of 'uri' (here, the rest of the HTTP
1901 * @param connection A connection handle passed to httpd_post_begin for which
1903 * @param recved_len Length of data received (for window update)
1960 * @param inp the received pbuf
1961 * @param hs the connection state
1962 * @param pcb the altcp_pcb which received this packet
2157 char *param = (char *)strstr(uri, "?");
2158 if (param != NULL) {
2160 *param = 0;
2174 if (param != NULL) {
2175 *param = '?';
2185 * @param hs the connection state
2186 * @param uri the HTTP header URI
2187 * @param is_09 1 if the request is HTTP/0.9 (no HTTP headers in response)
2311 * @param hs http connection state
2312 * @param file file structure to send (or NULL if not found)
2313 * @param is_09 1 if the request is HTTP/0.9 (no HTTP headers in response)
2314 * @param uri the HTTP header URI
2315 * @param tag_check enable SSI tag checking
2316 * @param params != NULL if URI has parameters (separated by '?')
2718 * @param ssi_handler the SSI handler function
2719 * @param tags an array of SSI tag strings to search for in SSI-enabled files
2720 * @param num_tags number of tags in the 'tags' array
2748 * @param cgis an array of CGI filenames/handler functions
2749 * @param num_handlers number of elements in the 'cgis' array