From 90d249e7e9661b2b7227d17a7a6ff5c57b846c43 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Tue, 19 Dec 2017 16:58:16 +0100 Subject: ptunnel-ng: * changed option (--listen) visibility * added TODO --- src/options.c | 2 +- src/ptunnel.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index 4c749af..bcbc98f 100644 --- a/src/options.c +++ b/src/options.c @@ -48,7 +48,7 @@ static const struct option_usage usage[] = { "option causes ptunnel to operate in proxy mode (Server).\n" }, /** --listen */ - {"port", 1, OPT_DEC32, {.unum = 2222}, + {"port", 0, OPT_DEC32, {.unum = 2222}, "Set TCP listening port (only used when operating in forward mode)\n" }, /** --remote-adr */ diff --git a/src/ptunnel.c b/src/ptunnel.c index 85f3b5f..b8f022c 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -167,6 +167,7 @@ int main(int argc, char *argv[]) { pt_log(kLog_debug, "Destination at %s:%u\n", opts.given_dst_hostname, opts.given_dst_port); + /* TODO: Maybe give the user the opportunity to bind to certain addresses e.g. 127.0.0.1 ? */ if (opts.mode == kMode_forward) pt_log(kLog_debug, "Listen for incoming connections at 0.0.0.0:%u\n", opts.tcp_listen_port); -- cgit v1.2.3