summaryrefslogblamecommitdiffstats
path: root/src/PolarSSL++/CallbackSslContext.cpp
blob: 0cc88a14a34798f13701edb22401aad7f630e094 (plain) (tree)


























































                                                                                                                                

// 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)
{
	// 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)
{
	if (m_Callbacks == NULL)
	{
		LOGWARNING("SSL: Trying to receive data with no callbacks, aborting.");
		return POLARSSL_ERR_NET_RECV_FAILED;
	}
	return m_Callbacks->ReceiveEncrypted(a_Buffer, a_NumBytes);
}





int cCallbackSslContext::SendEncrypted(const unsigned char * a_Buffer, size_t a_NumBytes)
{
	if (m_Callbacks == NULL)
	{
		LOGWARNING("SSL: Trying to send data with no callbacks, aborting.");
		return POLARSSL_ERR_NET_SEND_FAILED;
	}
	return m_Callbacks->SendEncrypted(a_Buffer, a_NumBytes);
}