feat: add blocking step support to http loop

This commit is contained in:
Jef Roosens 2024-02-01 18:42:29 +01:00
parent 9c01548256
commit a96ae39523
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 36 additions and 8 deletions

View file

@ -34,5 +34,5 @@ int main() {
lnm_log_init_global();
lnm_log_register_stdout(lnm_log_level_debug);
printf("res = %i\n", lnm_http_loop_run(hl, 8080, 1, 1));
printf("res = %i\n", lnm_http_loop_run(hl, 8080, 1, 32));
}