libmp/examples/pool/main.c

29 lines
484 B
C
Raw Normal View History

2024-06-20 00:34:32 +00:00
#include "../../include/all.h"
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int ret = EXIT_FAILURE;
2024-06-20 22:36:56 +00:00
if (argc != 2) {
2024-06-20 00:34:32 +00:00
printf("usage: %s <pool url>\n", argv[0]);
return ret;
}
lm_ctx_t ctx;
lm_ctx_init(&ctx);
ctx.debug = true;
2024-06-20 22:36:56 +00:00
if (!lm_ctx_pool_add(&ctx, "test", argv[1])) {
2024-06-20 00:34:32 +00:00
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
ret = EXIT_SUCCESS;
end:
lm_ctx_free(&ctx);
return ret;
}