summaryrefslogtreecommitdiff
path: root/src/lib/libressl/ressl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libressl/ressl.c')
-rw-r--r--src/lib/libressl/ressl.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/lib/libressl/ressl.c b/src/lib/libressl/ressl.c
index dc82f321b1..08ec061bf5 100644
--- a/src/lib/libressl/ressl.c
+++ b/src/lib/libressl/ressl.c
@@ -65,21 +65,29 @@ ressl_set_error(struct ressl *ctx, char *fmt, ...)
65} 65}
66 66
67struct ressl * 67struct ressl *
68ressl_new(struct ressl_config *config) 68ressl_new(void)
69{ 69{
70 struct ressl *ctx; 70 struct ressl *ctx;
71 71
72 if ((ctx = calloc(1, sizeof(*ctx))) == NULL) 72 if ((ctx = calloc(1, sizeof(*ctx))) == NULL)
73 return (NULL); 73 return (NULL);
74 74
75 ctx->config = &ressl_config_default;
76
77 ressl_reset(ctx);
78
79 return (ctx);
80}
81
82int
83ressl_configure(struct ressl *ctx, struct ressl_config *config)
84{
75 if (config == NULL) 85 if (config == NULL)
76 config = &ressl_config_default; 86 config = &ressl_config_default;
77 87
78 ctx->config = config; 88 ctx->config = config;
79 89
80 ressl_reset(ctx); 90 return (0);
81
82 return (ctx);
83} 91}
84 92
85void 93void