aboutsummaryrefslogtreecommitdiff
path: root/utilities
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-11-30 13:07:38 -0800
committerBen Pfaff <blp@nicira.com>2011-11-30 13:30:07 -0800
commit2daadadd2f70c65447e067ed34ebfa5dacb06c71 (patch)
tree6ec7e8b6d831802821ec045a4d39d31a5c8af7ff /utilities
parentf145afdc206064b942c2c0d8d1ab27e07b4b4f1d (diff)
ovs-ofctl: Improve usage message.
TARGET and SWITCH are different because TARGET can refer to a switch or a controller whereas SWITCH must be a switch, but TARGET wasn't defined before. Also, TARGET seems a little more user-friendly than the VCONN that was used here before. Reported-by: Reid Price <reid@nicira.com> Bug #7736.
Diffstat (limited to 'utilities')
-rw-r--r--utilities/ovs-ofctl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c
index 7b2b1860..cf77300d 100644
--- a/utilities/ovs-ofctl.c
+++ b/utilities/ovs-ofctl.c
@@ -187,10 +187,10 @@ usage(void)
" replace-flows SWITCH FILE replace flows with those in FILE\n"
" monitor SWITCH [MISSLEN] print packets received from SWITCH\n"
"\nFor OpenFlow switches and controllers:\n"
- " probe VCONN probe whether VCONN is up\n"
- " ping VCONN [N] latency of N-byte echos\n"
- " benchmark VCONN N COUNT bandwidth of COUNT N-byte echos\n"
- "where each SWITCH is an active OpenFlow connection method.\n",
+ " probe TARGET probe whether TARGET is up\n"
+ " ping TARGET [N] latency of N-byte echos\n"
+ " benchmark TARGET N COUNT bandwidth of COUNT N-byte echos\n"
+ "where SWITCH or TARGET is an active OpenFlow connection method.\n",
program_name, program_name);
vconn_usage(true, false, false);
vlog_usage();