new: implement pool info for client/server

This commit is contained in:
ngn
2024-06-27 23:05:39 +03:00
parent 6ef1bf0b12
commit 6c2f34e8d5
21 changed files with 611 additions and 152 deletions

View File

@ -11,16 +11,22 @@ int main(int argc, char *argv[]) {
return ret;
}
lm_ctx_t ctx;
lm_ctx_t ctx;
lm_pool_t *pool;
lm_ctx_init(&ctx);
ctx.debug = true;
if (!lm_ctx_pools_add(&ctx, "test", "mptp://127.0.0.1:5858")) {
if ((pool = lm_ctx_pools_add(&ctx, "test", "mptp://127.0.0.1:5858")) == NULL) {
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (!lm_pool_info_load(pool, "./examples/tests/pool/INFO")) {
printf("failed to load pool info: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (!lm_ctx_pools_serve(&ctx, argv[1], 10)) {
printf("failed to serve the pools: %s (%d)\n", lm_strerror(), lm_error());
goto end;