ESP-IDF
parser_data_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
parser_data_t
parser_data_t struct
Syntax
Show:
Summary
Declaration
from
httpd_parse.c:22
typedef
struct
{
http_parser_settings
settings
;
struct
httpd_req
*
req
;
enum
{
PARSING_IDLE
=
0
,
PARSING_URL
,
PARSING_HDR_FIELD
,
PARSING_HDR_VALUE
,
PARSING_BODY
,
PARSING_COMPLETE
,
PARSING_FAILED
}
status
;
httpd_err_code_t
error
;
struct
{
const
char
*
at
;
size_t
length
;
}
last
;
bool
paused
;
size_t
pre_parsed
;
size_t
raw_datalen
;
}
parser_data_t
;
Fields
Field
Declared as
Description
parser_data_t::settings
http_parser_settings
parser_data_t::req
struct
httpd_req
*
parser_data_t::status
enum
{
PARSING_IDLE
=
0
,
PARSING_URL
,
PARSING_HDR_FIELD
,
PARSING_HDR_VALUE
,
PARSING_BODY
,
PARSING_COMPLETE
,
PARSING_FAILED
}
parser_data_t::error
httpd_err_code_t
parser_data_t::last
struct
{
const
char
*
at
;
size_t
length
;
}
parser_data_t::paused
bool
Parser is paused.
parser_data_t::pre_parsed
size_t
Length of data to be skipped while parsing.
parser_data_t::raw_datalen
size_t
Full length of the raw data in scratch buffer.
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out