summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 96cfa67..887680a 100644
--- a/main.c
+++ b/main.c
@@ -70,7 +70,7 @@ static void * answer_request(size_t new_socket) {
70 fflush(output); 70 fflush(output);
71 // shutdown(new_socket, SHUT_RD); // shutdown the reading half of the connection 71 // shutdown(new_socket, SHUT_RD); // shutdown the reading half of the connection
72 72
73 DEBUG("output buffer has a length of %ld bytes\n", output_buffer_length); 73 DEBUG("> Output buffer has a length of %ld bytes\n", output_buffer_length);
74 74
75 // TODO: make parsing function abstract (e.g. parse(...) function point with dlsym) 75 // TODO: make parsing function abstract (e.g. parse(...) function point with dlsym)
76 parse_http(new_socket, output_buffer, output_buffer_length); 76 parse_http(new_socket, output_buffer, output_buffer_length);
..