summaryrefslogtreecommitdiff
path: root/staging/mausezahn.c
diff options
context:
space:
mode:
authorJon Schipp <jonschipp@gmail.com>2014-07-29 20:51:08 +0000
committerTobias Klauser <tklauser@distanz.ch>2014-08-04 10:28:32 +0200
commit29a7c9ee6fd3c353282150c6a8039473d69a7d44 (patch)
tree00ef06dbc78c452b7cc24adba9f670a342870db6 /staging/mausezahn.c
parent0678fa12400b54f4da054f1c6057a81f9cc8e041 (diff)
mausezahn: provide port option to configuration file
Specify the port for the CLI in /etc/netsniff-ng/mausezahn.conf like so: $ grep port /etc/netsniff-ng/mausezahn.conf port = 65000 $ mausezahn -V -x -l 127.0.0.1 Mausezahn 0.40 - (C) 2007-2010 by Herbert Haas - http://www.perihel.at/sec/mz/ Use at your own risk and responsibility! -- Verbose mode -- ... Opening config file /etc/netsniff-ng/mausezahn.conf... ... Mausezahn accepts incoming Telnet connections on 127.0.0.1:65000. Signed-off-by: Jon Schipp <jonschipp@gmail.com> [tklauser: Fixed whitespace issues for patch to apply cleanly] Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'staging/mausezahn.c')
-rw-r--r--staging/mausezahn.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/staging/mausezahn.c b/staging/mausezahn.c
index 0c0296e..46b7428 100644
--- a/staging/mausezahn.c
+++ b/staging/mausezahn.c
@@ -727,10 +727,6 @@ int getopts (int argc, char *argv[])
mz_port = (int) str2int (tx.arg_string);
}
- if (!quiet) {
- fprintf(stderr, "Mausezahn accepts incoming Telnet connections on port %i.\n", mz_port);
- }
-
mz_cli_init();
cli();
}