added server enabled message

This commit is contained in:
Václav Šmejkal 2023-02-21 15:05:31 +01:00
parent 1e77ff2878
commit 03418e7494
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -40,6 +40,8 @@ int main(void)
//LISTEN //LISTEN
if (listen(listen_socket, MAX_CONNECTIONS) < 0) why2_die("Binding failed."); if (listen(listen_socket, MAX_CONNECTIONS) < 0) why2_die("Binding failed.");
printf("Server enabled.\n\n");
//LOOP ACCEPT //LOOP ACCEPT
for (;;) for (;;)
{ {