#include #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 } }