Updated Networking library (markdown)

CPunch 2022-09-03 00:49:16 -05:00
parent 9b289be5ab
commit 708f4d0043
1 changed files with 2 additions and 2 deletions

@ -2,11 +2,11 @@ Laika has it's own cross-platform networking layer for Windows & Linux environme
## Polling
On Linux, epoll() is used instead of poll() to poll for socket events. The logic for all of this is in `lib/src/lpolllist.c`.
On Linux, epoll() is used instead of poll() to poll for socket events. The logic for all of this is in `lib/src/net/lpolllist.c`.
## Socket abstraction
A thin wrapper library for basic socket operations exists in `lib/src/lsocket.c`. This handles common things like binding, connecting, sending, receiving & accepting connections for both Windows & Linux environments.
A thin wrapper library for basic socket operations exists in `lib/src/net/lsocket.c`. This handles common things like binding, connecting, sending, receiving & accepting connections for both Windows & Linux environments.
## Lightweight encrypted packet protocol