diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-09 02:10:49 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-09 02:10:49 +0200 |
commit | b159cb2461a3b235f141b83b42e21dcbbd33d327 (patch) | |
tree | cd49ced584e1378d4b90ddb8e85fafacad033d40 /main.c | |
parent | 428c7a6cd55a8b05766be1b04cde824d1ea190de (diff) |
server: Rename server_listen to server_start
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ int main() { sigaction(SIGPIPE, &(struct sigaction){SIG_IGN}, NULL); server_t server = server_create(SERVER_PORT); - server_listen(&server); + server_start(&server); return EXIT_SUCCESS; } |