libmp/examples/server/main.c

43 lines
991 B
C
Raw Normal View History

2024-06-22 04:03:17 +00:00
#include "../../include/all.h"
2024-06-22 01:18:00 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
int main(int argc, char *argv[]) {
int ret = EXIT_FAILURE;
2024-06-22 04:03:17 +00:00
if (argc != 2) {
printf("usage: %s <host>\n", argv[0]);
2024-06-22 01:18:00 +00:00
return ret;
}
lm_ctx_t ctx;
lm_pool_t *pool;
2024-06-22 04:03:17 +00:00
lm_ctx_init(&ctx);
2024-06-22 01:18:00 +00:00
if ((pool = lm_ctx_pools_add(&ctx, "test", "mptp://127.0.0.1:5858")) == NULL) {
2024-06-22 04:03:17 +00:00
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
2024-06-22 01:18:00 +00:00
if (!lm_pool_info_load(pool, "./examples/tests/INFO")) {
printf("failed to load pool info: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (!lm_pool_list_load(pool, "./examples/tests/LIST")) {
printf("failed to load pool list: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
2024-06-25 18:21:15 +00:00
if (!lm_ctx_pools_serve(&ctx, argv[1], 10)) {
2024-06-22 04:03:17 +00:00
printf("failed to serve the pools: %s (%d)\n", lm_strerror(), lm_error());
goto end;
2024-06-22 01:18:00 +00:00
}
ret = EXIT_SUCCESS;
end:
2024-06-22 04:03:17 +00:00
lm_ctx_free(&ctx);
2024-06-22 01:18:00 +00:00
return ret;
}