From 902872d25cd72b6bbb49065f6e4400ed5f587457 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sat, 26 Aug 2023 18:43:08 +0200 Subject: [PATCH] implemented why2_chat_init_client_config meow --- src/chat/main/client.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/chat/main/client.c b/src/chat/main/client.c index 3a32ad5..768c98f 100644 --- a/src/chat/main/client.c +++ b/src/chat/main/client.c @@ -25,6 +25,7 @@ along with this program. If not, see . #include +#include #include #include @@ -32,6 +33,8 @@ along with this program. If not, see . int main(void) { + why2_chat_init_client_config(); + int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET char *line = NULL; size_t line_length = 0;