Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | best practices & coding style fixes | Egor Tensin | 2023-05-13 |
| | | | | | | | | * I don't really need to declare all variables at the top of the function anymore. * Default-initialize variables more. * Don't set the output parameter until the object is completely constructed. | ||
* | make struct tcp_server opaque | Egor Tensin | 2023-04-29 |
| | |||
* | add copyright notices | Egor Tensin | 2022-12-02 |
| | |||
* | log: refactoring | Egor Tensin | 2022-09-08 |
| | |||
* | sanitize #include-s | Egor Tensin | 2022-09-08 |
| | |||
* | don't use the latest glibc features | Egor Tensin | 2022-08-28 |
| | | | | | pthread_attr_setsigmask_np is only available since 2.32, which is too modern. | ||
* | server: shutting down more gracefully | Egor Tensin | 2022-08-28 |
| | |||
* | add check_errno macro | Egor Tensin | 2022-08-26 |
| | |||
* | fix pthread error handling | Egor Tensin | 2022-08-26 |
| | | | | pthread functions return positive error codes. | ||
* | net: rework API | Egor Tensin | 2022-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. |