Borey
Borey
```c int main(int argc, char const *argv[]) { http_listen("80", NULL, .on_request = on_http_request, .on_upgrade = on_http_upgrade, .max_clients=10240, .log = 1, .public_folder="../web" ); fio_start(.threads = 1, .workers = 1); return 0;...
/* ***************************************************************************** The connection protocol (use the facil.io API to make a socket and attach it) ***************************************************************************** */ typedef struct { fio_protocol_s pr; intptr_t uuid; void *udata; void *tls; void...
for example I want to know how i can obtain method of http request or body code is request->method??? but nothing I have to read more source code,it's will spend...