diff options
Diffstat (limited to 'src/mbedTLS++')
-rw-r--r-- | src/mbedTLS++/BufferedSslContext.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mbedTLS++/BufferedSslContext.h b/src/mbedTLS++/BufferedSslContext.h index 6facb5915..f48552882 100644 --- a/src/mbedTLS++/BufferedSslContext.h +++ b/src/mbedTLS++/BufferedSslContext.h @@ -16,12 +16,13 @@ -class cBufferedSslContext : +class cBufferedSslContext: public cSslContext { - typedef cSslContext super; + using Super = cSslContext; public: + /** Creates a new context with the buffers of specified size for the encrypted / decrypted data. */ cBufferedSslContext(size_t a_BufferSize = 64000); |