GNU libmicrohttpd
0.9.29
|
#include </builddir/build/BUILD/libmicrohttpd-0.9.46/src/microspdy/structures.h>
Data Fields | |
struct SPDY_NameValue * | next |
struct SPDY_NameValue * | prev |
char * | name |
char ** | value |
unsigned int | num_values |
Collection of HTTP headers used in requests and responses.
Definition at line 486 of file structures.h.
char* SPDY_NameValue::name |
Null terminated string for name.
Definition at line 501 of file structures.h.
Referenced by spdy_handler_new_stream(), SPDY_name_value_add(), SPDY_name_value_destroy(), SPDY_name_value_iterate(), SPDY_name_value_lookup(), SPDYF_name_value_from_stream(), SPDYF_name_value_is_empty(), and SPDYF_name_value_to_stream().
struct SPDY_NameValue* SPDY_NameValue::next |
This is a doubly-linked list.
Definition at line 491 of file structures.h.
Referenced by spdy_handler_new_stream(), SPDY_name_value_add(), SPDY_name_value_destroy(), SPDY_name_value_iterate(), SPDY_name_value_lookup(), and SPDYF_name_value_to_stream().
unsigned int SPDY_NameValue::num_values |
Number of values, this is >= 0.
Definition at line 512 of file structures.h.
Referenced by spdy_handler_new_stream(), SPDY_name_value_add(), SPDY_name_value_destroy(), SPDY_name_value_iterate(), SPDY_name_value_lookup(), and SPDYF_name_value_to_stream().
struct SPDY_NameValue* SPDY_NameValue::prev |
This is a doubly-linked list.
Definition at line 496 of file structures.h.
Referenced by SPDY_name_value_add().
char** SPDY_NameValue::value |
Array of Null terminated strings for value. num_values is the length of the array.
Definition at line 507 of file structures.h.
Referenced by spdy_handler_new_stream(), SPDY_name_value_add(), SPDY_name_value_destroy(), SPDY_name_value_iterate(), SPDY_name_value_lookup(), SPDYF_name_value_from_stream(), SPDYF_name_value_is_empty(), and SPDYF_name_value_to_stream().