Fix usage syntax in regular TCP case
You always need to specify the target on the command line as the system has no default target address.
This commit is contained in:
parent
a1346552fb
commit
e28b7c8c75
|
|
@ -450,7 +450,7 @@ def websockify_init():
|
||||||
|
|
||||||
# Setup optparse.
|
# Setup optparse.
|
||||||
usage = "\n %prog [options]"
|
usage = "\n %prog [options]"
|
||||||
usage += " [source_addr:]source_port [target_addr:target_port]"
|
usage += " [source_addr:]source_port target_addr:target_port"
|
||||||
usage += "\n %prog [options]"
|
usage += "\n %prog [options]"
|
||||||
usage += " --token-plugin=CLASS [source_addr:]source_port"
|
usage += " --token-plugin=CLASS [source_addr:]source_port"
|
||||||
usage += "\n %prog [options]"
|
usage += "\n %prog [options]"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue