diff options
Diffstat (limited to 'src/libtls/tls.c')
-rw-r--r-- | src/libtls/tls.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/libtls/tls.c b/src/libtls/tls.c index ea527b122..2bcaffbc8 100644 --- a/src/libtls/tls.c +++ b/src/libtls/tls.c @@ -192,6 +192,14 @@ struct private_tls_t { size_t headpos; }; +/** + * Described in header. + */ +void libtls_init(void) +{ + /* empty */ +} + METHOD(tls_t, process, status_t, private_tls_t *this, void *buf, size_t buflen) { @@ -429,7 +437,7 @@ METHOD(tls_t, destroy, void, */ tls_t *tls_create(bool is_server, identification_t *server, identification_t *peer, tls_purpose_t purpose, - tls_application_t *application) + tls_application_t *application, tls_cache_t *cache) { private_tls_t *this; @@ -464,7 +472,7 @@ tls_t *tls_create(bool is_server, identification_t *server, .purpose = purpose, ); - this->crypto = tls_crypto_create(&this->public); + this->crypto = tls_crypto_create(&this->public, cache); this->alert = tls_alert_create(); if (is_server) { |