Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | net: don't copy data in struct buf | Egor Tensin | 2023-07-18 |
| | |||
* | net: remove unused buf_* routines | Egor Tensin | 2023-07-18 |
| | |||
* | add {file,net}_close as a wrapper to close(2) | Egor Tensin | 2023-06-09 |
| | |||
* | net: drop the _all suffix | Egor Tensin | 2023-05-15 |
| | |||
* | msg: enforce at least one word | Egor Tensin | 2023-05-14 |
| | | | | Also, move some stuff to net.c where it belongs. | ||
* | fix unnecessary #include-s | Egor Tensin | 2023-05-13 |
| | |||
* | net: add struct buf | Egor Tensin | 2023-04-29 |
| | |||
* | add copyright notices | Egor Tensin | 2022-12-02 |
| | |||
* | sanitize #include-s | Egor Tensin | 2022-09-08 |
| | |||
* | net: removed unused API | Egor Tensin | 2022-08-30 |
| | |||
* | net: error out unless net_recv_all receives all bytes | Egor Tensin | 2022-08-30 |
| | |||
* | net: more portable | Egor Tensin | 2022-08-30 |
| | | | | Use a predefined byte order, integers with fixed width, etc. | ||
* | add missing #include | Egor Tensin | 2022-08-28 |
| | |||
* | 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. | ||
* | net: fix recv_all | Egor Tensin | 2022-08-23 |
| | | | | Make sure we handle read() returning 0, this is a valid use-case. | ||
* | add some code | Egor Tensin | 2022-08-23 |
A basic client-server app, the client sends commands as an array of strings. Hopefully I didn't mess up, and hopefully it'll be useful. |