get some connection infrastructure going...

This commit is contained in:
Arisotura
2023-09-03 12:59:24 +02:00
parent ca4d745e71
commit 58691a08b2
4 changed files with 373 additions and 14 deletions

View File

@ -247,13 +247,13 @@ bool Init()
CurBlobType = -1;
CurBlobLen = 0;
if (enet_initialize() != 0)
/*if (enet_initialize() != 0)
{
printf("enet shat itself :(\n");
return false;
}
printf("enet init OK\n");
printf("enet init OK\n");*/
return true;
}
@ -261,7 +261,7 @@ void DeInit()
{
// TODO: cleanup resources properly!!
enet_deinitialize();
//enet_deinitialize();
}