summaryrefslogtreecommitdiff
path: root/src/lib/libressl/ressl_internal.h
diff options
context:
space:
mode:
authorjsing <>2014-08-04 16:18:42 +0000
committerjsing <>2014-08-04 16:18:42 +0000
commit3eb7cc8fc384f98d85b9a9530d417018a6942a74 (patch)
tree27862ac7cadb44f277ca910c18c9293337888dd7 /src/lib/libressl/ressl_internal.h
parentf98c1e26ee0861d9feef350c2d0c1147a9d20a2e (diff)
downloadopenbsd-3eb7cc8fc384f98d85b9a9530d417018a6942a74.tar.gz
openbsd-3eb7cc8fc384f98d85b9a9530d417018a6942a74.tar.bz2
openbsd-3eb7cc8fc384f98d85b9a9530d417018a6942a74.zip
A ressl server needs different configuration from a ressl client - provide
a specific server configuration function and call this from ressl_configure.
Diffstat (limited to 'src/lib/libressl/ressl_internal.h')
-rw-r--r--src/lib/libressl/ressl_internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/libressl/ressl_internal.h b/src/lib/libressl/ressl_internal.h
index 75ca11dd02..44d098b4b3 100644
--- a/src/lib/libressl/ressl_internal.h
+++ b/src/lib/libressl/ressl_internal.h
@@ -56,6 +56,7 @@ struct ressl *ressl_server_conn(struct ressl *ctx);
56 56
57int ressl_check_hostname(X509 *cert, const char *host); 57int ressl_check_hostname(X509 *cert, const char *host);
58int ressl_configure_keypair(struct ressl *ctx); 58int ressl_configure_keypair(struct ressl *ctx);
59int ressl_configure_server(struct ressl *ctx);
59int ressl_host_port(const char *hostport, char **host, char **port); 60int ressl_host_port(const char *hostport, char **host, char **port);
60int ressl_set_error(struct ressl *ctx, char *fmt, ...); 61int ressl_set_error(struct ressl *ctx, char *fmt, ...);
61 62