netex/src/server/server.c
2023-12-24 23:17:27 +01:00

19 lines
323 B
C

#include <stdio.h>
#include "netex.h"
#include "netexssl.h"
int main(int argc, char *argv[])
{
init_openssl();
PRINT_LINE("Hello, server!");
shutdown_openssl();
return 0;
}
void* th_srv_listen(void)
{
for (;;)
{
//TODO: Listen to connections & give a thread to handle communication
}
}