36 lines
888 B
C++
36 lines
888 B
C++
#ifndef FSFW_OSAL_WINDOWS_TCWINTCPSERVER_H_
|
|
#define FSFW_OSAL_WINDOWS_TCWINTCPSERVER_H_
|
|
|
|
#include "../../objectmanager/SystemObject.h"
|
|
#include "../../tasks/ExecutableObjectIF.h"
|
|
|
|
#include <vector>
|
|
|
|
class TcWinTcpServer:
|
|
public SystemObject,
|
|
public ExecutableObjectIF {
|
|
public:
|
|
/* The ports chosen here should not be used by any other process. */
|
|
static constexpr uint16_t DEFAULT_TCP_SERVER_PORT = 7301;
|
|
static constexpr uint16_t DEFAULT_TCP_CLIENT_PORT = 7302;
|
|
|
|
TcWinTcpServer(object_id_t objectId, object_id_t tmtcUnixUdpBridge);
|
|
virtual~ TcWinTcpServer();
|
|
|
|
private:
|
|
|
|
SOCKET serverTcpSocket = 0;
|
|
|
|
std::vector<uint8_t> receptionBuffer;
|
|
int tcpSockOpt = 0;
|
|
|
|
enum class ErrorSources {
|
|
SOCKET_CALL,
|
|
SETSOCKOPT_CALL
|
|
};
|
|
|
|
void handleError(ErrorSources errorSrc);
|
|
};
|
|
|
|
#endif /* FSFW_OSAL_WINDOWS_TCWINTCPSERVER_H_ */
|