mirror of
https://github.com/hmaxnl/netex.git
synced 2025-04-19 11:38:13 +02:00
19 lines
323 B
C
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
|
|
}
|
|
} |