Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | switch to egor@tensin.name | Egor Tensin | 2023-12-12 |
| | |||
* | refactoring | Egor Tensin | 2023-11-12 |
| | |||
* | switch to JSON-RPC as message format | Egor Tensin | 2023-07-18 |
| | | | | | | Instead of the weird `struct msg` I had, I switched to the JSON-RPC format. It's basically the same, but has a well-defined semantics in case of errors. | ||
* | clang-format: don't break string literals | Egor Tensin | 2023-07-07 |
| | |||
* | test: add some basic command-line usage tests | Egor Tensin | 2023-07-07 |
| | |||
* | appease clang-format | Egor Tensin | 2023-07-04 |
| | |||
* | use designated struct initializers more | Egor Tensin | 2023-06-30 |
| | |||
* | show git hash with --version | Egor Tensin | 2023-06-30 |
| | | | | Also, use cmake's configure_file to build string constants in. | ||
* | log: support logging levels | Egor Tensin | 2023-06-28 |
| | |||
* | sanitize #include-s | Egor Tensin | 2023-06-13 |
| | |||
* | msg: add functions for one-off communication | Egor Tensin | 2023-05-14 |
| | |||
* | use -std=c17 -Wpedantic | Egor Tensin | 2023-05-13 |
| | |||
* | 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. | ||
* | add command module to handle request-response communications | Egor Tensin | 2023-05-13 |
| | |||
* | cmd_line: read executable name from /proc/self/exe | Egor Tensin | 2023-04-29 |
| | |||
* | dedupe command line routines | Egor Tensin | 2023-04-29 |
| | |||
* | make struct client opaque | Egor Tensin | 2023-04-29 |
| | |||
* | add copyright notices | Egor Tensin | 2022-12-02 |
| | |||
* | 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. |