fsfw/src/fsfw/cfdp/handler/mib.h

32 lines
742 B
C
Raw Normal View History

2022-08-09 14:39:03 +02:00
#ifndef FSFW_CFDP_MIB_H
#define FSFW_CFDP_MIB_H
2022-08-09 15:46:42 +02:00
#include <utility>
2022-08-09 16:26:37 +02:00
#include "fsfw/cfdp/pdu/PduConfig.h"
2022-08-09 15:46:42 +02:00
#include "FaultHandlerBase.h"
namespace cfdp {
2022-08-09 14:39:03 +02:00
struct IndicationCfg {
bool eofSentIndicRequired = true;
bool eofRecvIndicRequired = true;
bool fileSegmentRecvIndicRequired = true;
bool transactionFinishedIndicRequired = true;
bool suspendedIndicRequired = true;
bool resumedIndicRequired = true;
};
struct LocalEntityCfg {
2022-08-09 15:46:42 +02:00
LocalEntityCfg(EntityId localId, IndicationCfg indicationCfg, FaultHandlerBase& fhBase)
: localId(std::move(localId)), indicCfg(indicationCfg), fhBase(fhBase) {}
EntityId localId;
2022-08-09 14:39:03 +02:00
IndicationCfg indicCfg;
2022-08-09 15:46:42 +02:00
FaultHandlerBase& fhBase;
2022-08-09 14:39:03 +02:00
};
2022-08-09 15:46:42 +02:00
} // namespace cfdp
2022-08-09 14:39:03 +02:00
#endif // FSFW_CFDP_MIB_H