diff options
author | cflip <cflip@cflip.net> | 2023-07-09 11:57:13 -0600 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-07-09 11:57:13 -0600 |
commit | c446378817e4d215ffd69f452f846fc5278f7943 (patch) | |
tree | da4b68ef6f1fabf532100b6d23509881008e1bd3 /net.h | |
parent | b67db2af4c3fd5bc8c612c6348c78323f5bf4b48 (diff) |
Gracefully shut down server when interrupted with Ctrl+C
Diffstat (limited to 'net.h')
-rw-r--r-- | net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,6 +7,6 @@ #include "http.h" int net_init_server(int); -struct http_request net_next_request(int serverfd, int *clientfd); +int net_next_request(int serverfd, int *clientfd, struct http_request *); #endif |