DeterministicESPAsyncWebServer 1.2.0
Zero-allocation, bounded-execution async HTTP server for ESP32
Loading...
Searching...
No Matches
QueryParam Struct Reference

A single parsed query-string parameter. More...

#include <http_parser.h>

Public Attributes

char key [QUERY_KEY_LEN]
 Parameter name, null-terminated.
 
char val [QUERY_VAL_LEN]
 Parameter value (empty string if absent).
 

Detailed Description

A single parsed query-string parameter.

Definition at line 96 of file http_parser.h.

Member Data Documentation

◆ key

char QueryParam::key[QUERY_KEY_LEN]

Parameter name, null-terminated.

Definition at line 98 of file http_parser.h.

Referenced by http_get_query().

◆ val

char QueryParam::val[QUERY_VAL_LEN]

Parameter value (empty string if absent).

Definition at line 99 of file http_parser.h.

Referenced by http_get_query().


The documentation for this struct was generated from the following file: