diff --git a/Networking-library.md b/Networking-library.md index 839c51c..5399bfc 100644 --- a/Networking-library.md +++ b/Networking-library.md @@ -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