ngn 833503f455
new: docker image workflow
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-28 10:01:39 +03:00

44 lines
1.0 KiB
C

#include "../../include/all.h"
#include "../common.h"
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
int main(int argc, char *argv[]) {
int ret = EXIT_FAILURE;
lm_ctx_t ctx;
if (argc != 2) {
printf("usage: %s <host>\n", argv[0]);
return ret;
}
if (!lm_ctx_new(&ctx, NULL, TEMP_DIR, NULL)) {
printf("failed to init the ctx: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (lm_ctx_pool_add(&ctx, "test", "mptp://s.test.local", "./examples/test") == NULL) {
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (lm_ctx_pool_add(&ctx, "test", "mptp://n.test.local", "/tmp/test") == NULL) {
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
lm_ctx_sync(&ctx, false, NULL, NULL);
if (!lm_ctx_serve(&ctx, argv[1], 10, NULL, NULL, NULL)) {
printf("failed to serve the pools: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
ret = EXIT_SUCCESS;
end:
lm_ctx_free(&ctx);
return ret;
}