From 708f4d00437b3b2191956404ebbd8f3f4ee9204c Mon Sep 17 00:00:00 2001 From: CPunch Date: Sat, 3 Sep 2022 00:49:16 -0500 Subject: [PATCH] Updated Networking library (markdown) --- Networking-library.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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