38 lines
840 B
C
38 lines
840 B
C
#include "../../include/all.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int ret = EXIT_FAILURE;
|
|
|
|
if (argc != 2) {
|
|
printf("usage: %s <host>\n", argv[0]);
|
|
return ret;
|
|
}
|
|
|
|
lm_ctx_t ctx;
|
|
lm_pool_t *pool;
|
|
lm_ctx_init(&ctx);
|
|
|
|
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;
|
|
}
|
|
|
|
ret = EXIT_SUCCESS;
|
|
end:
|
|
lm_ctx_free(&ctx);
|
|
return ret;
|
|
}
|