Declared missing shutdown logic as unproblematic.

The only thing a shutdown logic would do is to clean up the very resources the OS cleans up anyway when interrupting the process. So I just don't see the point in the complexity of a signal handler (and SetConsoleCtrlHandler on Windows).
This commit is contained in:
Oliver Schmidt 2018-02-14 21:22:16 +01:00
parent beb202aeac
commit a97458f07c
1 changed files with 0 additions and 1 deletions

View File

@ -263,7 +263,6 @@ int main(int argc, char *argv[])
return EXIT_FAILURE;
}
// TODO: Add server shutdown
while (1)
{
unsigned char auReadBuf[256];