aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tcp_server.c (follow)
Commit message (Collapse)AuthorAge
* don't use the latest glibc featuresEgor Tensin2022-08-28
| | | | | pthread_attr_setsigmask_np is only available since 2.32, which is too modern.
* server: shutting down more gracefullyEgor Tensin2022-08-28
|
* add check_errno macroEgor Tensin2022-08-26
|
* fix pthread error handlingEgor Tensin2022-08-26
| | | | pthread functions return positive error codes.
* net: rework APIEgor Tensin2022-08-25
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.