C언어를 공부하면서 웹서버도 한번 직접 만들어보고 싶다고 생각했었는데 찾아보니 C언어로도 웹서버를 만들수 있다고 해서 하나하나 공부해가면서 만들어봤습니다. #include #include #include #include #include #include #include #include #include #include "test.h" #include "test-network.h" #define PORT 80 #define WEBROOT "./webroot" int logfd, sockfd; void handle_connection(int, struct sockaddr_in *, int); int get_file_size(int); void timestamp(int); void handle_shutdown(i..