From e4f032cac1fb55b7bfb86f3951f50b2289998da7 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Sun, 27 Jan 2008 14:45:47 +0000 Subject: [PATCH] Make help fit into 80 columns. git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@208 bc163920-b10d-0410-b2c5-a5491ca2ceef --- cmdline.c | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/cmdline.c b/cmdline.c index 2f63e8c..7011e52 100644 --- a/cmdline.c +++ b/cmdline.c @@ -49,37 +49,37 @@ void cmdline_parser_print_help (void) { "\n" "Standard options:\n" // FIXME: " -c, --config=FILE Read config options from file\n" -" -i, --inetd Run from inetd (default=off)\n" -" -a, --standalone=INT Run as standalone daemon on specified port\n" -// FIXME: " -f, --nobackground Don't for to background in standalone mode\n" -" -p, --proxy=STRING Local proxy host:port combination\n" -" -r, --remproxy=STRING Remote proxy host:port combination (using 2 proxies)\n" -" -d, --dest=STRING Destination host:port combination\n" +" -i, --inetd Run from inetd (default=off)\n" +" -a, --standalone=INT Run as standalone daemon on specified port\n" +// FIXME: " -f, --nobackground Don't for to background in standalone mode\n" +" -p, --proxy=STRING Local proxy host:port combination\n" +" -r, --remproxy=STRING Remote proxy host:port combination (using 2 proxies)\n" +" -d, --dest=STRING Destination host:port combination\n" #ifdef USE_SSL -" -e, --encrypt SSL encrypt data between local proxy and destination\n" -" -E, --encrypt-proxy SSL encrypt data between client and local proxy\n" +" -e, --encrypt SSL encrypt data between local proxy and destination\n" +" -E, --encrypt-proxy SSL encrypt data between client and local proxy\n" #endif "\n" "Additional options for specific features:\n" -" -F, --passfile=STRING File with credentials for proxy authentication\n" -" -P, --proxyauth=STRING Proxy auth credentials user:pass combination\n" -" -R, --remproxyauth=STRING Remote proxy auth credentials user:pass combination\n" -// " -u, --user=STRING Username for proxy authentication\n" -// " -s, --pass=STRING Password for proxy authentication\n" -// " -U, --uservar=STRING Environment variable that holds username\n" -// " -S, --passvar=STRING Environment variable that holds password\n" -" -N, --ntlm Use NTLM based authentication\n" -" -t, --domain=STRING NTLM domain (default: autodetect)\n" -" -H, --header=STRING Add additional HTTP headers to send to proxy\n" +" -F, --passfile=STRING File with credentials for proxy authentication\n" +" -P, --proxyauth=STRING Proxy auth credentials user:pass combination\n" +" -R, --remproxyauth=STRING Remote proxy auth credentials user:pass combination\n" +// " -u, --user=STRING Username for proxy authentication\n" +// " -s, --pass=STRING Password for proxy authentication\n" +// " -U, --uservar=STRING Environment variable that holds username\n" +// " -S, --passvar=STRING Environment variable that holds password\n" +" -N, --ntlm Use NTLM based authentication\n" +" -t, --domain=STRING NTLM domain (default: autodetect)\n" +" -H, --header=STRING Add additional HTTP headers to send to proxy\n" #ifdef SETPROCTITLE -" -x, --proctitle=STRING Use a different process title\n" +" -x, --proctitle=STRING Use a different process title\n" #endif "\n" "Miscellaneous options:\n" -" -v, --verbose Turn on verbosity\n" -" -q, --quiet Suppress messages\n" -" -h, --help Print help and exit\n" -" -V, --version Print version and exit\n", PACKAGE); +" -v, --verbose Turn on verbosity\n" +" -q, --quiet Suppress messages\n" +" -h, --help Print help and exit\n" +" -V, --version Print version and exit\n", PACKAGE); #ifndef HAVE_GETOPT_LONG printf( "\n"