You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Simple library for TCP sockets in C++. Server and client use select to receive e
7
7
## Description
8
8
9
9
Originally forked from https://github.com/computersarecool/cpp_sockets
10
-
I reimplemented the library to be event-based with a single blocking function using a select(). This allows the server or client thread to simply wait for events instead of manually polling. I removed UDP.
10
+
I reimplemented the library to be event-based with a single blocking function using a select(). This allows the server or client thread to simply wait for events in a loop instead of manually polling. This is I removed UDP.
11
11
In addition to socket events such as connect, disconnect and receive Socket_waiter can also receive custom messages to interrupt the thread.
0 commit comments