mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-16 03:31:39 +00:00
cmd/tailscale: correct order for -terminate-tls flag in serve tcp usage
The -terminate-tls flag is for the tcp subsubcommand, not the serve subcommand like the usage example suggests. Signed-off-by: salman <salman@tailscale.com>
This commit is contained in:
parent
faf2d30439
commit
8a1201ac42
@ -89,7 +89,7 @@ EXAMPLES
|
|||||||
" $ tailscale serve tcp 5432",
|
" $ tailscale serve tcp 5432",
|
||||||
"",
|
"",
|
||||||
" - Forward raw, TLS-terminated TCP packets to a local TCP server on port 5432:",
|
" - Forward raw, TLS-terminated TCP packets to a local TCP server on port 5432:",
|
||||||
" $ tailscale serve --terminate-tls tcp 5432",
|
" $ tailscale serve tcp --terminate-tls 5432",
|
||||||
}, "\n"),
|
}, "\n"),
|
||||||
FlagSet: e.newFlags("serve-tcp", func(fs *flag.FlagSet) {
|
FlagSet: e.newFlags("serve-tcp", func(fs *flag.FlagSet) {
|
||||||
fs.BoolVar(&e.terminateTLS, "terminate-tls", false, "terminate TLS before forwarding TCP connection")
|
fs.BoolVar(&e.terminateTLS, "terminate-tls", false, "terminate TLS before forwarding TCP connection")
|
||||||
@ -584,8 +584,8 @@ func elipticallyTruncate(s string, max int) string {
|
|||||||
//
|
//
|
||||||
// Examples:
|
// Examples:
|
||||||
// - tailscale serve tcp 5432
|
// - tailscale serve tcp 5432
|
||||||
// - tailscale --serve-port=8443 tcp 4430
|
// - tailscale serve --serve-port=8443 tcp 4430
|
||||||
// - tailscale --serve-port=10000 --terminate-tls tcp 8080
|
// - tailscale serve --serve-port=10000 tcp --terminate-tls 8080
|
||||||
func (e *serveEnv) runServeTCP(ctx context.Context, args []string) error {
|
func (e *serveEnv) runServeTCP(ctx context.Context, args []string) error {
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(os.Stderr, "error: invalid number of arguments\n\n")
|
fmt.Fprintf(os.Stderr, "error: invalid number of arguments\n\n")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user