1
0
mirror of https://github.com/CPunch/Laika.git synced 2025-09-26 03:40:05 +00:00

started cnc.[ch], lpeer.c no longer catches errors, instead cnc.c handles error events

This commit is contained in:
2022-01-24 10:34:30 -06:00
parent 48eebc1951
commit c0aa8d2724
4 changed files with 108 additions and 12 deletions

View File

@@ -64,7 +64,7 @@ struct sLaika_socket {
int inCap;
};
#define laikaS_isAlive(sock) (sock->sock != INVALID_SOCKET)
#define laikaS_isAlive(arg) (arg->sock != INVALID_SOCKET)
void laikaS_init(void);
void laikaS_cleanUp(void);