cef_server_handler_t.on_http_request

Called when |server| receives an HTTP request. |connection_id| uniquely identifies the connection, |client_address| is the requesting IPv4 or IPv6 client address including port number, and |request| contains the request contents (URL, function, headers and optional POST data). Call cef_server_t functions either synchronously or asynchronusly to send a response.

struct cef_server_handler_t
extern (System)
void function(cef_server_handler_t* self, cef_server_t* server, int connection_id, const(cef_string_t)* client_address, cef_request_t* request) nothrow on_http_request;

Meta