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>
|
|
|
|
|
2024-06-28 20:09:24 +00:00
|
|
|
#define DATA_DIR "./examples"
|
|
|
|
|
2024-06-22 01:18:00 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2024-07-05 13:27:11 +00:00
|
|
|
int ret = EXIT_FAILURE;
|
|
|
|
lm_ctx_t ctx;
|
2024-06-22 01:18:00 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-06-22 04:03:17 +00:00
|
|
|
lm_ctx_init(&ctx);
|
2024-06-22 01:18:00 +00:00
|
|
|
|
2024-06-28 20:09:24 +00:00
|
|
|
if (!lm_ctx_set_data(&ctx, DATA_DIR)) {
|
|
|
|
printf("failed to set data dir: %s (%d)\n", lm_strerror(), lm_error());
|
2024-06-27 20:05:39 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-10 13:39:05 +00:00
|
|
|
if (lm_ctx_pool_add(&ctx, "test", "mptp://127.0.0.1:5858") == NULL) {
|
2024-06-28 20:09:24 +00:00
|
|
|
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
2024-06-28 18:48:04 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-05 13:27:11 +00:00
|
|
|
lm_ctx_sync(&ctx, false, NULL, NULL);
|
2024-07-01 03:43:20 +00:00
|
|
|
|
2024-07-05 13:27:11 +00:00
|
|
|
if (!lm_ctx_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;
|
|
|
|
}
|