aboutsummaryrefslogtreecommitdiff
path: root/src/forward.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/forward.c')
-rw-r--r--src/forward.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/forward.c b/src/forward.c
index 5fc0857..86f4fb6 100644
--- a/src/forward.c
+++ b/src/forward.c
@@ -67,10 +67,15 @@ int fwd_validate_ctx(const forward_ctx *ctx)
return 0;
}
-int fwd_connect(forward_ctx *ctx, psocket *fwd_client)
+int fwd_connect_sock(forward_ctx *ctx, psocket *fwd_client)
{
assert(ctx);
socket_clone(&ctx->sock, fwd_client);
return socket_reconnect_in(fwd_client);
}
+
+int fwd_listen_fd(forward_ctx *ctx, int fwd_fd)
+{
+ return 0;
+}