summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2014-08-18 13:00:51 -0400
committerJanusz Kozerski <j.kozerski@samsung.com>2014-10-20 15:25:35 +0200
commit817b96a890be64f61bb1ac7be18fa2af9892ea5c (patch)
tree59e4e3d7bb2f7dfcb234da7740be4ecca7bc59f7
parent1f9227d7f6e6ca3fce2bcedcec2d47bfc84344d1 (diff)
downloadopenssl-817b96a890be64f61bb1ac7be18fa2af9892ea5c.tar.gz
openssl-817b96a890be64f61bb1ac7be18fa2af9892ea5c.tar.bz2
openssl-817b96a890be64f61bb1ac7be18fa2af9892ea5c.zip
RT2379: Bug in BIO_set_accept_port.pod
The doc says that port can be "*" to mean any port. That's wrong. Reviewed-by: Dr. Stephen Henson <steve@openssl.org> (cherry picked from commit 07e3b31fae98b985d3d2aad7066144b11833f688)
-rw-r--r--doc/crypto/BIO_s_accept.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/BIO_s_accept.pod b/doc/crypto/BIO_s_accept.pod
index 7b63e46..b80b6ae 100644
--- a/doc/crypto/BIO_s_accept.pod
+++ b/doc/crypto/BIO_s_accept.pod
@@ -59,8 +59,8 @@ the accept socket. See L<BIO_s_fd(3)|BIO_s_fd(3)>
BIO_set_accept_port() uses the string B<name> to set the accept
port. The port is represented as a string of the form "host:port",
where "host" is the interface to use and "port" is the port.
-Either or both values can be "*" which is interpreted as meaning
-any interface or port respectively. "port" has the same syntax
+The host can be can be "*" which is interpreted as meaning
+any interface; "port" has the same syntax
as the port specified in BIO_set_conn_port() for connect BIOs,
that is it can be a numerical port string or a string to lookup
using getservbyname() and a string table.