ustream-ssl: add support for using a fd instead of ustream as backing
[project/ustream-ssl.git] / ustream-mbedtls.h
index 70bd4ea6fb95bd97f060e7928bf2bcbcd76d007c..281b9195abc9e37034c234e5a24e64ef04ef553f 100644 (file)
@@ -19,9 +19,8 @@
 #ifndef __USTREAM_POLARSSL_H
 #define __USTREAM_POLARSSL_H
 
-#include <mbedtls/net.h>
+#include <mbedtls/net_sockets.h>
 #include <mbedtls/ssl.h>
-#include <mbedtls/certs.h>
 #include <mbedtls/x509.h>
 #include <mbedtls/rsa.h>
 #include <mbedtls/error.h>
@@ -40,7 +39,13 @@ struct ustream_ssl_ctx {
 #if defined(MBEDTLS_SSL_CACHE_C)
        mbedtls_ssl_cache_context cache;
 #endif
+       ustream_ssl_debug_cb debug_cb;
+       void *debug_cb_priv;
        bool server;
+       int *ciphersuites;
+
+       void *session_data;
+       size_t session_data_len;
 };
 
 static inline char *__ustream_ssl_strerror(int error, char *buffer, int len)
@@ -59,7 +64,6 @@ static inline void __ustream_ssl_update_peer_cn(struct ustream_ssl *us)
        mbedtls_ssl_set_hostname(us->ssl, us->peer_cn);
 }
 
-void __ustream_ssl_session_free(void *ssl);
 void *__ustream_ssl_session_new(struct ustream_ssl_ctx *ctx);
 
 #endif