From 297ba8979e9cdc4bf9730147a0e1d4bc449d68f0 Mon Sep 17 00:00:00 2001 From: Oleg Borodin Date: Tue, 15 Aug 2023 08:39:32 +0200 Subject: [PATCH] at work --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfefc49..7df402a 100644 --- a/README.md +++ b/README.md @@ -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 +```