pub unsafe extern "C" fn ecs_http_server_http_request(
srv: *mut ecs_http_server_t,
req: *const c_char,
len: ecs_size_t,
reply_out: *mut ecs_http_reply_t,
) -> c_intExpand description
Emulate a request. The request string must be a valid HTTP request. A minimal example: GET /entity/flecs/core/World?label=true HTTP/1.1
@param srv The server. @param req The request. @param len The length of the request (optional). @return The reply.