1
0
Fork 0
cuberite-2a/src/mbedTLS++/CallbackSslContext.cpp

61 lines
1.1 KiB
C++
Raw Normal View History

2017-09-19 08:34:08 +00:00
2014-04-27 20:27:53 +00:00
// CallbackSslContext.cpp
// Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data
#include "Globals.h"
#include "CallbackSslContext.h"
cCallbackSslContext::cCallbackSslContext(void) :
2014-10-20 20:55:07 +00:00
m_Callbacks(nullptr)
2014-04-27 20:27:53 +00:00
{
// Nothing needed, but the constructor needs to exist so
}
cCallbackSslContext::cCallbackSslContext(cCallbackSslContext::cDataCallbacks & a_Callbacks) :
m_Callbacks(&a_Callbacks)
{
}
int cCallbackSslContext::ReceiveEncrypted(unsigned char * a_Buffer, size_t a_NumBytes)
{
2014-10-20 20:55:07 +00:00
if (m_Callbacks == nullptr)
2014-04-27 20:27:53 +00:00
{
LOGWARNING("SSL: Trying to receive data with no callbacks, aborting.");
return MBEDTLS_ERR_NET_RECV_FAILED;
2014-04-27 20:27:53 +00:00
}
return m_Callbacks->ReceiveEncrypted(a_Buffer, a_NumBytes);
}
int cCallbackSslContext::SendEncrypted(const unsigned char * a_Buffer, size_t a_NumBytes)
{
2014-10-20 20:55:07 +00:00
if (m_Callbacks == nullptr)
2014-04-27 20:27:53 +00:00
{
LOGWARNING("SSL: Trying to send data with no callbacks, aborting.");
return MBEDTLS_ERR_NET_SEND_FAILED;
2014-04-27 20:27:53 +00:00
}
return m_Callbacks->SendEncrypted(a_Buffer, a_NumBytes);
}