diff options
author | Matt Caswell <matt@openssl.org> | 2017-04-24 11:46:09 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-04-25 11:13:39 +0100 |
commit | e829142846467b4815d96fe9198e73d5e4d9bbf1 (patch) | |
tree | 48dfc25add2059847ccb04c721eeefa4dbe11503 /include | |
parent | c90da922ddaa3b470f4c1c11d02f370589a31912 (diff) | |
download | openssl-new-e829142846467b4815d96fe9198e73d5e4d9bbf1.tar.gz |
Document BIO_lookup_ex()
We also change the enum type to an int.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3286)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/bio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h index dea28c1cc1..b1276a542d 100644 --- a/include/openssl/bio.h +++ b/include/openssl/bio.h @@ -668,8 +668,8 @@ int BIO_lookup(const char *host, const char *service, enum BIO_lookup_type lookup_type, int family, int socktype, BIO_ADDRINFO **res); int BIO_lookup_ex(const char *host, const char *service, - enum BIO_lookup_type lookup_type, - int family, int socktype, int protocol, BIO_ADDRINFO **res); + int lookup_type, int family, int socktype, int protocol, + BIO_ADDRINFO **res); int BIO_sock_error(int sock); int BIO_socket_ioctl(int fd, long type, void *arg); int BIO_socket_nbio(int fd, int mode); |