HTTP server handle used to manage all HTTP server functions.
This structure holds the state and configuration of the HTTP server, including sockets, synchronization events, request and response data, and buffers.
Public Attributes#
Configuration settings for the HTTP server.
Socket descriptor for the server.
Socket descriptor for the client currently being served.
Event ID for the HTTP server, used for synchronization.
Current HTTP request being processed.
Buffer for storing the HTTP request.
Pointer to a string containing headers.
Pointer to the data of the HTTP request.
Length of the request data.
Remaining length of data to be processed in the request.
Flag indicating whether the response has been sent for the current request.
Remaining length of data to be sent in the response.
Public Attribute Documentation#
client_socket#
int sl_http_server_s::client_socket
Socket descriptor for the client currently being served.
http_server_id#
osEventFlagsId_t sl_http_server_s::http_server_id
Event ID for the HTTP server, used for synchronization.
request_buffer#
char sl_http_server_s::request_buffer[MAX_HEADER_BUFFER_LENGTH]
Buffer for storing the HTTP request.
response_sent#
bool sl_http_server_s::response_sent
Flag indicating whether the response has been sent for the current request.
rem_resp_length#
uint32_t sl_http_server_s::rem_resp_length
Remaining length of data to be sent in the response.