http_server icon indicating copy to clipboard operation
http_server copied to clipboard

Fully functional web server using C/C++ from scratch without third party library

Results 2 http_server issues
Sort by recently updated
recently updated
newest added

我沒有編譯過,只是依照經驗判斷哪邊有可能有問題 sendfile有可能實際送出的資料少於block_size 因此img_total_size減掉block_size會有問題的 詳細請看sendfile的說明(你註解中的連結)的回傳值的部分

``` root@shortcuts:/home/web-user505/Public/public# c++ helloworld.cpp helloworld.cpp: In function ‘int main(int, const char**)’: helloworld.cpp:200:43: error: invalid conversion from ‘void*’ to ‘char*’ [-fpermissive] 200 | char *find_string = malloc(200); | ~~~~~~^~~~~ | |...