diff options
author | jsing <> | 2014-08-04 16:18:42 +0000 |
---|---|---|
committer | jsing <> | 2014-08-04 16:18:42 +0000 |
commit | 3eb7cc8fc384f98d85b9a9530d417018a6942a74 (patch) | |
tree | 27862ac7cadb44f277ca910c18c9293337888dd7 /src/lib/libressl/ressl_internal.h | |
parent | f98c1e26ee0861d9feef350c2d0c1147a9d20a2e (diff) | |
download | openbsd-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.h | 1 |
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 | ||
57 | int ressl_check_hostname(X509 *cert, const char *host); | 57 | int ressl_check_hostname(X509 *cert, const char *host); |
58 | int ressl_configure_keypair(struct ressl *ctx); | 58 | int ressl_configure_keypair(struct ressl *ctx); |
59 | int ressl_configure_server(struct ressl *ctx); | ||
59 | int ressl_host_port(const char *hostport, char **host, char **port); | 60 | int ressl_host_port(const char *hostport, char **host, char **port); |
60 | int ressl_set_error(struct ressl *ctx, char *fmt, ...); | 61 | int ressl_set_error(struct ressl *ctx, char *fmt, ...); |
61 | 62 | ||