aboutsummaryrefslogtreecommitdiff
path: root/lib/vconn.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2013-09-23 14:33:09 -0700
committerJustin Pettit <jpettit@nicira.com>2013-10-01 16:18:45 -0700
commitca843648e3b4181a52a398b902e5e69221976476 (patch)
tree88eb2b8f9a6c3d69a131db8923e1d30f00d5e0ec /lib/vconn.c
parent2a10d620dc1680cb62c014afee3af730c3412c3b (diff)
Don't differentiate between TCP and SSL ports for OpenFlow and OVSDB.
The OVS code has always made a distinction between the unencrypted (TCP) and SSL port numbers for the OpenFlow and OVSDB protocols. The default port numbers for both protocols has changed, and there continues to be no distinction between the unencrypted and SSL versions. This commit removes the distinction in port numbers. A future patch will recognize the change in default port number. Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/vconn.c')
-rw-r--r--lib/vconn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vconn.c b/lib/vconn.c
index 15ac1190..8a064851 100644
--- a/lib/vconn.c
+++ b/lib/vconn.c
@@ -141,7 +141,7 @@ vconn_usage(bool active, bool passive, bool bootstrap OVS_UNUSED)
"PORT (default: %d) at remote IP\n", OFP_TCP_PORT);
#ifdef HAVE_OPENSSL
printf(" ssl:IP[:PORT] "
- "SSL PORT (default: %d) at remote IP\n", OFP_SSL_PORT);
+ "SSL PORT (default: %d) at remote IP\n", OFP_TCP_PORT);
#endif
printf(" unix:FILE Unix domain socket named FILE\n");
}
@@ -154,7 +154,7 @@ vconn_usage(bool active, bool passive, bool bootstrap OVS_UNUSED)
#ifdef HAVE_OPENSSL
printf(" pssl:[PORT][:IP] "
"listen for SSL on PORT (default: %d) on IP\n",
- OFP_SSL_PORT);
+ OFP_TCP_PORT);
#endif
printf(" punix:FILE "
"listen on Unix domain socket FILE\n");