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#

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.


key#

char* sl_http_client_header_s::key

Key name of the HTTP header.


value#

char* sl_http_client_header_s::value

Value of the HTTP header.