From 8c705b9cd4c7866227f09af2a859744e47602ba4 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 20 Apr 2014 02:16:44 +0200 Subject: Minimize poll interface to simplify implementation of alternative implementations --- src/tuntap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tuntap.c') diff --git a/src/tuntap.c b/src/tuntap.c index d638611..fd81c2a 100644 --- a/src/tuntap.c +++ b/src/tuntap.c @@ -102,7 +102,7 @@ void fastd_tuntap_open(fastd_context_t *ctx) { if (close(ctl_sock)) pr_error_errno(ctx, "close"); - fastd_poll_set_fd_tuntap(ctx, ctx->tunfd); + fastd_poll_set_fd_tuntap(ctx); pr_debug(ctx, "tun/tap device initialized."); } @@ -204,7 +204,7 @@ void fastd_tuntap_open(fastd_context_t *ctx) { exit_bug(ctx, "invalid mode"); } - fastd_poll_set_fd_tuntap(ctx, ctx->tunfd); + fastd_poll_set_fd_tuntap(ctx); pr_debug(ctx, "tun/tap device initialized."); } @@ -273,7 +273,7 @@ void fastd_tuntap_open(fastd_context_t *ctx) { exit_bug(ctx, "invalid mode"); } - fastd_poll_set_fd_tuntap(ctx, ctx->tunfd); + fastd_poll_set_fd_tuntap(ctx); pr_debug(ctx, "tun device initialized."); } -- cgit v1.2.3