Structure representing an HTTP client extended header node.
This structure is used to represent a single HTTP header in a linked list of headers. Each node contains a key-value pair for the header, and a pointer to the next header in the list.
Public Attributes#
struct sl_http_client_header_s *
Pointer to the next header node in the linked list.
char *
Key name of the HTTP header.
char *
Value of the HTTP header.
Public Attribute Documentation#
next#
struct sl_http_client_header_s* sl_http_client_header_s::next
Pointer to the next header node in the linked list.
Definition at line
227
of file components/service/http_client/inc/sl_http_client.h
key#
char* sl_http_client_header_s::key
Key name of the HTTP header.
Definition at line
228
of file components/service/http_client/inc/sl_http_client.h
value#
char* sl_http_client_header_s::value
Value of the HTTP header.
Definition at line
229
of file components/service/http_client/inc/sl_http_client.h