summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMax Christian Pohle2021-11-29 16:14:37 +0100
committerMax Christian Pohle2021-11-29 16:14:37 +0100
commit512c406b4fb3bc4054073608707ae07f65a65890 (patch)
tree4352c5587cbc4fd185b2cfc76bb68df53bf43b89 /main.c
parent7fd1bbc1abafee0f1db19118d127c5bd744f1b67 (diff)
downloadohmycgi-512c406b4fb3bc4054073608707ae07f65a65890.tar.bz2
ohmycgi-512c406b4fb3bc4054073608707ae07f65a65890.zip
still getting this code shorter
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);
..