diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-08-11 13:24:36 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-08-11 13:24:36 +0200 |
commit | d6bbb0e218ea74e6205cfc0b180e768e80e1bc31 (patch) | |
tree | ca11f45c2f2e2130d0a98528ad67edc1353b414c /src/jail.c | |
parent | 40035b83f990286767df0db170295b3f354de0d5 (diff) |
setup basic jail packet structs/funcs
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -161,7 +161,7 @@ int jail_setup_event(jail_ctx *ctx[], size_t siz, event_ctx **ev_ctx) return 1; for (size_t i = 0; i < siz; ++i) { - if (event_add_sock(*ev_ctx, &ctx[i]->fwd_ctx.sock)) { + if (event_add_sock(*ev_ctx, &ctx[i]->fwd_ctx.sock, NULL)) { return 1; } @@ -521,12 +521,12 @@ static int jail_socket_tty(prisoner_process *ctx, int tty_fd) ctx->host_buf, ctx->service_buf, ctx->client_psock.fd); goto finish; } - if (event_add_sock(ev_ctx, &ctx->client_psock)) { + if (event_add_sock(ev_ctx, &ctx->client_psock, NULL)) { E_STRERR("Jail event context for socket %s:%s", ctx->host_buf, ctx->service_buf); goto finish; } - if (event_add_fd(ev_ctx, tty_fd)) { + if (event_add_fd(ev_ctx, tty_fd, NULL)) { E_STRERR("Jail event context for tty fd %d", tty_fd); goto finish; @@ -544,7 +544,7 @@ static int jail_socket_tty(prisoner_process *ctx, int tty_fd) E_STRERR("%s", "SIGNAL fd"); goto finish; } - if (event_add_fd(ev_ctx, ev_cli.signal_fd)) { + if (event_add_fd(ev_ctx, ev_cli.signal_fd, NULL)) { E_STRERR("Jail SIGNAL fd %d", ev_cli.signal_fd); goto finish; } |