Commit message (Collapse) | Author | ||
---|---|---|---|
2023-04-29 | make struct tcp_server opaque | Egor Tensin | |
2022-12-02 | add copyright notices | Egor Tensin | |
2022-08-25 | net: rework API | Egor Tensin | |
First, rename all API functions so that they start with net_. Second, abstract the basic TCP server functionality into tcp_server.c. This includes reworking net_accept so that it's a simple blocking operation, and putting the callback stuff to tcp_server.c. Also, the server now uses detached threads instead of fork(), since I want connection handlers to share memory. |