made sockets non-blocking

This commit is contained in:
Daniel Ledda
2025-11-28 19:35:09 +01:00
parent 45d3f28546
commit f311b242c2
4 changed files with 73 additions and 34 deletions

2
core.h
View File

@@ -16,7 +16,7 @@
#define function static
#define global static
#define local_persist static
#define forever for (;;)
#define Forever for (;;)
#define DeferLoop(begin_stmnt, end_stmnt) for(int __defer_i = ((begin_stmnt), 0); __defer_i < 1; (++__defer_i, (end_stmnt)))