mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-18 10:15:38 +00:00
28 lines
448 B
C
28 lines
448 B
C
![]() |
#ifndef _TCPRECEIVE_H_
|
||
|
#define _TCPRECEIVE_H_
|
||
|
|
||
|
#include <thread>
|
||
|
#include <atomic>
|
||
|
#include <vector>
|
||
|
#include "SDL_net.h"
|
||
|
|
||
|
class TCPReceive
|
||
|
{
|
||
|
public:
|
||
|
TCPReceive(int port);
|
||
|
~TCPReceive();
|
||
|
|
||
|
std::vector<char>& Receive();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void ListenFunc();
|
||
|
|
||
|
TCPsocket m_listenSocket;
|
||
|
std::atomic<TCPsocket> m_receiveSocket;
|
||
|
std::thread m_listenThread;
|
||
|
std::atomic_bool m_running;
|
||
|
std::vector<char> m_recBuffer;
|
||
|
};
|
||
|
|
||
|
#endif
|