24 m_Callbacks(&a_Callbacks)
36 LOGWARNING(
"SSL: Trying to receive data with no callbacks, aborting.");
50 LOGWARNING(
"SSL: Trying to send data with no callbacks, aborting.");
void LOGWARNING(std::string_view a_Format, const Args &... args)
#define MBEDTLS_ERR_NET_RECV_FAILED
Reading information from the socket failed.
#define MBEDTLS_ERR_NET_SEND_FAILED
Sending information through the socket failed.
virtual int SendEncrypted(const unsigned char *a_Buffer, size_t a_NumBytes) override
cCallbackSslContext(void)
Creates a new SSL context with no callbacks assigned.
cDataCallbacks * m_Callbacks
The callbacks to use to send and receive SSL peer data.
virtual int ReceiveEncrypted(unsigned char *a_Buffer, size_t a_NumBytes) override
Interface used as a data sink for the SSL peer data.
virtual int SendEncrypted(const unsigned char *a_Buffer, size_t a_NumBytes)=0
Called when mbedTLS wants to write encrypted data to the SSL peer.
virtual int ReceiveEncrypted(unsigned char *a_Buffer, size_t a_NumBytes)=0
Called when mbedTLS wants to read encrypted data from the SSL peer.