diff --git a/man/mosh-server.1 b/man/mosh-server.1 index 03cb4a6..43cc906 100644 --- a/man/mosh-server.1 +++ b/man/mosh-server.1 @@ -21,6 +21,7 @@ mosh-server \- server-side helper for mosh .B mosh-server new [\-s] +[\-v] [\-i IP] [\-p port] [\-c colors] @@ -59,6 +60,10 @@ bind to the local interface used for an incoming SSH connection, given in the \fBSSH_CONNECTION\fP environment variable (for multihomed hosts) +.TP +.B \-v +Print some debugging information even after detaching. + .TP .B \-i \fIIP\fP IP address of the local interface to bind (for multihomed hosts) diff --git a/src/frontend/mosh-server.cc b/src/frontend/mosh-server.cc index c32b945..af24992 100644 --- a/src/frontend/mosh-server.cc +++ b/src/frontend/mosh-server.cc @@ -72,7 +72,7 @@ using namespace std; void print_usage( const char *argv0 ) { - fprintf( stderr, "Usage: %s new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]\n", argv0 ); + fprintf( stderr, "Usage: %s new [-s] [-v] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]\n", argv0 ); } /* Simple spinloop */