mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
Merge pull request #50 from gpchelkin/fixtypo
Fix typo s/certficate/certificate
This commit is contained in:
commit
301f71e709
2 changed files with 65 additions and 65 deletions
60
README.md
60
README.md
|
|
@ -28,39 +28,39 @@ Usage: proxytunnel [OPTIONS]...
|
|||
Build generic tunnels through HTTPS proxies using HTTP authentication
|
||||
|
||||
Standard options:
|
||||
-i, --inetd Run from inetd (default: off)
|
||||
-a, --standalone=INT Run as standalone daemon on specified port
|
||||
-p, --proxy=STRING Local proxy host:port combination
|
||||
-r, --remproxy=STRING Remote proxy host:port combination (using 2 proxies)
|
||||
-d, --dest=STRING Destination host:port combination
|
||||
-e, --encrypt SSL encrypt data between local proxy and destination
|
||||
-E, --encrypt-proxy SSL encrypt data between client and local proxy
|
||||
-X, --encrypt-remproxy SSL encrypt data between local and remote proxy
|
||||
-W, --wa-bug-29744 workaround ASF Bugzilla 29744, if SSL is active stop
|
||||
using it after CONNECT (might not work on all setups;
|
||||
see /usr/share/doc/proxytunnel/README.Debian.gz)
|
||||
-B, --buggy-encrypt-proxy Equivalent to -E -W, provided for backwards
|
||||
compatibility
|
||||
-L (legacy) enforce TLSv1 connection
|
||||
-T, --no-ssl3 Do not connect using SSLv3
|
||||
-i, --inetd Run from inetd (default: off)
|
||||
-a, --standalone=INT Run as standalone daemon on specified port
|
||||
-p, --proxy=STRING Local proxy host:port combination
|
||||
-r, --remproxy=STRING Remote proxy host:port combination (using 2 proxies)
|
||||
-d, --dest=STRING Destination host:port combination
|
||||
-e, --encrypt SSL encrypt data between local proxy and destination
|
||||
-E, --encrypt-proxy SSL encrypt data between client and local proxy
|
||||
-X, --encrypt-remproxy SSL encrypt data between local and remote proxy
|
||||
-W, --wa-bug-29744 workaround ASF Bugzilla 29744, if SSL is active stop
|
||||
using it after CONNECT (might not work on all setups;
|
||||
see /usr/share/doc/proxytunnel/README.Debian.gz)
|
||||
-B, --buggy-encrypt-proxy Equivalent to -E -W, provided for backwards
|
||||
compatibility
|
||||
-L (legacy) enforce TLSv1 connection
|
||||
-T, --no-ssl3 Do not connect using SSLv3
|
||||
|
||||
Additional options for specific features:
|
||||
-z, --no-check-certficate Don't verify server SSL certificate
|
||||
-C, --cacert=STRING Path to trusted CA certificate or directory
|
||||
-F, --passfile=STRING File with credentials for proxy authentication
|
||||
-P, --proxyauth=STRING Proxy auth credentials user:pass combination
|
||||
-R, --remproxyauth=STRING Remote proxy auth credentials user:pass combination
|
||||
-N, --ntlm Use NTLM based authentication
|
||||
-t, --domain=STRING NTLM domain (default: autodetect)
|
||||
-H, --header=STRING Add additional HTTP headers to send to proxy
|
||||
-o STRING send custom Host Header
|
||||
-x, --proctitle=STRING Use a different process title
|
||||
-z, --no-check-certificate Don't verify server SSL certificate
|
||||
-C, --cacert=STRING Path to trusted CA certificate or directory
|
||||
-F, --passfile=STRING File with credentials for proxy authentication
|
||||
-P, --proxyauth=STRING Proxy auth credentials user:pass combination
|
||||
-R, --remproxyauth=STRING Remote proxy auth credentials user:pass combination
|
||||
-N, --ntlm Use NTLM based authentication
|
||||
-t, --domain=STRING NTLM domain (default: autodetect)
|
||||
-H, --header=STRING Add additional HTTP headers to send to proxy
|
||||
-o STRING send custom Host Header
|
||||
-x, --proctitle=STRING Use a different process title
|
||||
|
||||
Miscellaneous options:
|
||||
-v, --verbose Turn on verbosity
|
||||
-q, --quiet Suppress messages
|
||||
-h, --help Print help and exit
|
||||
-V, --version Print version and exit
|
||||
-v, --verbose Turn on verbosity
|
||||
-q, --quiet Suppress messages
|
||||
-h, --help Print help and exit
|
||||
-V, --version Print version and exit
|
||||
```
|
||||
|
||||
To use this program with OpenSSH to connect to a host somewhere, create
|
||||
|
|
@ -77,7 +77,7 @@ With:
|
|||
|
||||
```
|
||||
- foobar The symbolic name of the host you want to connect to
|
||||
- proxy The host name of the proxy you want to connect through
|
||||
- proxy The host name of the proxy you want to connect through
|
||||
- 8080 The port number where the proxy software listens to
|
||||
- username Your proxy userid (password will be prompted)
|
||||
- mybox.athome.nl The hostname of the box you want to connect to (ultimately)
|
||||
|
|
|
|||
70
cmdline.c
70
cmdline.c
|
|
@ -48,51 +48,51 @@ void cmdline_parser_print_help (void) {
|
|||
"Build generic tunnels through HTTPS proxies using HTTP authentication\n"
|
||||
"\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 tok 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"
|
||||
// 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 tok 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"
|
||||
" -X, --encrypt-remproxy SSL encrypt data between local and remote proxy\n"
|
||||
" -W, --wa-bug-29744 Workaround ASF Bugzilla 29744: if SSL is active stop\n"
|
||||
" using it after CONNECT (might not work on all setups; see\n"
|
||||
" /usr/share/doc/proxytunnel/README.Debian.gz)\n"
|
||||
" -B, --buggy-encrypt-proxy Equivalent to -E -W, provided for backwards\n"
|
||||
" compatibility\n"
|
||||
" -L (legacy) enforce TLSv1 connection\n"
|
||||
" -T, --no-ssl3 Do not connect using SSLv3\n"
|
||||
" -e, --encrypt SSL encrypt data between local proxy and destination\n"
|
||||
" -E, --encrypt-proxy SSL encrypt data between client and local proxy\n"
|
||||
" -X, --encrypt-remproxy SSL encrypt data between local and remote proxy\n"
|
||||
" -W, --wa-bug-29744 Workaround ASF Bugzilla 29744: if SSL is active stop\n"
|
||||
" using it after CONNECT (might not work on all setups; see\n"
|
||||
" /usr/share/doc/proxytunnel/README.Debian.gz)\n"
|
||||
" -B, --buggy-encrypt-proxy Equivalent to -E -W, provided for backwards\n"
|
||||
" compatibility\n"
|
||||
" -L (legacy) enforce TLSv1 connection\n"
|
||||
" -T, --no-ssl3 Do not connect using SSLv3\n"
|
||||
#endif
|
||||
"\n"
|
||||
"Additional options for specific features:\n"
|
||||
#ifdef USE_SSL
|
||||
" -z, --no-check-certficate Don't verify server SSL certificate\n"
|
||||
" -C, --cacert=STRING Path to trusted CA certificate or directory\n"
|
||||
" -z, --no-check-certificate Don't verify server SSL certificate\n"
|
||||
" -C, --cacert=STRING Path to trusted CA certificate or directory\n"
|
||||
#endif
|
||||
" -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"
|
||||
" -o STRING send custom Host Header\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"
|
||||
" -o STRING send custom Host Header\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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue