Cuberite
A lightweight, fast and extensible game server for Minecraft
CallbackSslContext.cpp
Go to the documentation of this file.
1 
2 // CallbackSslContext.cpp
3 
4 // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data
5 
6 #include "Globals.h"
7 #include "CallbackSslContext.h"
8 
9 
10 
11 
12 
14  m_Callbacks(nullptr)
15 {
16  // Nothing needed, but the constructor needs to exist so
17 }
18 
19 
20 
21 
22 
24  m_Callbacks(&a_Callbacks)
25 {
26 }
27 
28 
29 
30 
31 
32 int cCallbackSslContext::ReceiveEncrypted(unsigned char * a_Buffer, size_t a_NumBytes)
33 {
34  if (m_Callbacks == nullptr)
35  {
36  LOGWARNING("SSL: Trying to receive data with no callbacks, aborting.");
38  }
39  return m_Callbacks->ReceiveEncrypted(a_Buffer, a_NumBytes);
40 }
41 
42 
43 
44 
45 
46 int cCallbackSslContext::SendEncrypted(const unsigned char * a_Buffer, size_t a_NumBytes)
47 {
48  if (m_Callbacks == nullptr)
49  {
50  LOGWARNING("SSL: Trying to send data with no callbacks, aborting.");
52  }
53  return m_Callbacks->SendEncrypted(a_Buffer, a_NumBytes);
54 }
55 
56 
57 
58 
59 
void LOGWARNING(std::string_view a_Format, const Args &... args)
Definition: LoggerSimple.h:67
#define MBEDTLS_ERR_NET_RECV_FAILED
Reading information from the socket failed.
Definition: ErrorCodes.h:10
#define MBEDTLS_ERR_NET_SEND_FAILED
Sending information through the socket failed.
Definition: ErrorCodes.h:11
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.