This commit is contained in:
2023-08-15 08:39:32 +02:00
parent 6b110ddc15
commit 297ba8979e

View File

@@ -1,4 +1,19 @@
#cworker mini framework
##cworker mini framework
A minimalist kit for creating a network or local service
using only C (replacing a previously written and lost one).
Purpose: to create system services
Available:
* cflexer/cfparser - configuration file parsing
* cllexer/clparser - parsing command line options
* jlexer/jparser - json description parsing (only key-value for now)
* rcache - buffered reading from open descriptor
* cworker - network service framework
##cworker mini framework
Минималисткий набор для создания сетевого или локального сервиса
с использованием только C (взамен ранее написанного и утерянного).
@@ -14,3 +29,16 @@
* cworker - каркас сетевого сервиса
В разработке.
## Output example
```
2023-08-15T07:35:59.585125566+EET debug: init service
2023-08-15T07:35:59.585255932+EET debug: reading configiration
2023-08-15T07:35:59.585401789+EET debug: reading options
2023-08-15T07:35:59.585465130+EET debug: port: 9002
2023-08-15T07:35:59.585512374+EET debug: configure service
2023-08-15T07:35:59.585557007+EET debug: detach service
2023-08-15T07:35:59.585601580+EET debug: build service
2023-08-15T07:35:59.585646324+EET debug: run service
```