1
0
forked from fsfw/fsfw

removed unused fields

This commit is contained in:
2021-03-12 18:20:54 +01:00
parent 2684b0c68e
commit 5eb6b277ba
2 changed files with 4 additions and 18 deletions

View File

@ -13,8 +13,7 @@ public:
static const std::string DEFAULT_UDP_CLIENT_PORT;
TmTcWinUdpBridge(object_id_t objectId, object_id_t tcDestination,
object_id_t tmStoreId, object_id_t tcStoreId,
std::string udpServerPort = "", std::string udpClientPort = "");
object_id_t tmStoreId, object_id_t tcStoreId, std::string udpServerPort = "");
virtual~ TmTcWinUdpBridge();
/**
@ -32,16 +31,10 @@ protected:
private:
SOCKET serverSocket = 0;
std::string udpServerPort;
std::string udpClientPort;
const int serverSocketOptions = 0;
struct sockaddr_in clientAddress;
int clientAddressLen = 0;
struct sockaddr_in serverAddress;
int serverAddressLen = 0;
//! Access to the client address is mutex protected as it is set by another task.
MutexIF::TimeoutType timeoutType = MutexIF::TimeoutType::WAITING;
dur_millis_t mutexTimeoutMs = 20;