diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-05-06 22:22:47 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-05-06 22:22:47 +0200 |
commit | 14d2b4d0134ac00a6262d5c8229ffe0d3b5ecd48 (patch) | |
tree | 1803619405ed6733390198db2f322746eb31accd /src/main.c | |
parent | 9653d78388348ebd47b820a0d9d95bbd885973a0 (diff) |
POTD skeleton #43.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -51,7 +51,8 @@ int main(int argc, char *argv[]) D("Initialising jail service on port %s", jail_ports[i]); jail_init_ctx(&jail[i], MAX_STACKSIZE); - jail[i]->newroot = strdup("/home/lns/git/busybox/sysroot"); + //jail[i]->newroot = strdup("/home/lns/git/busybox/sysroot"); + jail[i]->newroot = strdup("/home/toni/git/busybox/_install"); ABORT_ON_FATAL( jail_setup(jail[i], "127.0.0.1", jail_ports[i]), "Jail daemon setup" ); ABORT_ON_FATAL( jail_validate_ctx(jail[i]), @@ -67,7 +68,7 @@ int main(int argc, char *argv[]) { ABORT_ON_FATAL( fwd_init_ctx(&ssh_fwd, ssh_init_cb), "Forwarder initialisation" ); - ABORT_ON_FATAL( fwd_setup(ssh_fwd, "127.0.0.1", "22222"), + ABORT_ON_FATAL( fwd_setup_client(ssh_fwd, "127.0.0.1", "22222"), "Forwarder setup" ); ABORT_ON_FATAL( fwd_validate_ctx( ssh_fwd ), "Forwarder validation" ); |