diff --git a/client/http_client.c b/client/http_client.c index 7ca330a..0ed37a5 100644 --- a/client/http_client.c +++ b/client/http_client.c @@ -26,7 +26,6 @@ int main(int argc, char* argv[]) { printf("%s", PORT_ERROR); } get_parts(dest, path_buffer, host_buffer); - printf("%s\n%s\n", path_buffer, host_buffer); struct http_message req = build_basic_request("GET", host_buffer, path_buffer, port_num); struct response_info res; enum socket_read_result read_result = send_request(req, &res); diff --git a/common/http_types.c b/common/http_types.c index ae936db..0bf4275 100644 --- a/common/http_types.c +++ b/common/http_types.c @@ -1,7 +1,6 @@ #include "http_types.h" #include #include -#include #include #include diff --git a/common/socket_helper.c b/common/socket_helper.c index f0fc2da..f4b8fcd 100644 --- a/common/socket_helper.c +++ b/common/socket_helper.c @@ -2,7 +2,6 @@ #include "socket_helper.h" #include #include -#include #include #include