tofes
tofes
I'm on master branch commit 75005d8b578c3c8aff75f87301895a2eb2ad04e5 Date: Sun Dec 3 06:50:35 2017 +0900 fix building (#20) I increased my linux virtual machine memory to 55GB, and still got the error...
This thread explained why setting socket buffer size didn't work for me. Is there someone currently working on implementing `setsockopt` and `getsockopt`?
Suggest to update the `server_loop` function as follows: ``` void server_loop(int server_socket) { struct sockaddr_in client_addr; socklen_t client_addr_len = sizeof(client_addr); add_accept_request(server_socket, &client_addr, &client_addr_len); while (1) { struct io_uring_cqe *cqe; //...