fsfw/src/fsfw/cfdp/mib.h

19 lines
421 B
C
Raw Normal View History

2022-08-09 14:39:03 +02:00
#ifndef FSFW_CFDP_MIB_H
#define FSFW_CFDP_MIB_H
struct IndicationCfg {
bool eofSentIndicRequired = true;
bool eofRecvIndicRequired = true;
bool fileSegmentRecvIndicRequired = true;
bool transactionFinishedIndicRequired = true;
bool suspendedIndicRequired = true;
bool resumedIndicRequired = true;
};
struct LocalEntityCfg {
cfdp::EntityId localId;
IndicationCfg indicCfg;
};
#endif // FSFW_CFDP_MIB_H