Finish off the UDP Controller and more clean-ups.

This commit is contained in:
Jonathan Naylor
2021-02-17 19:35:28 +00:00
parent 8ace65b86d
commit 279afb75f3
19 changed files with 154 additions and 209 deletions

View File

@@ -20,6 +20,7 @@
#define UDPController_H
#include "MMDVMModemPort.h"
#include "RingBuffer.h"
#include "UDPSocket.h"
#include <string>
@@ -41,9 +42,7 @@ protected:
CUDPSocket m_socket;
sockaddr_storage m_addr;
unsigned int m_addrLen;
unsigned char* m_buffer;
unsigned int m_length;
unsigned int m_offset;
CRingBuffer<unsigned char> m_buffer;
};
#endif