2022-08-09 19:00:47 +02:00
|
|
|
#include "UserMock.h"
|
|
|
|
|
|
|
|
cfdp::UserMock::UserMock(HasFileSystemIF& vfs) : UserBase(vfs) {}
|
|
|
|
|
|
|
|
void cfdp::UserMock::transactionIndication(cfdp::TransactionId id) {}
|
|
|
|
void cfdp::UserMock::eofSentIndication(cfdp::TransactionId id) {}
|
|
|
|
void cfdp::UserMock::abandonedIndication(cfdp::TransactionId id, cfdp::ConditionCode code,
|
|
|
|
uint64_t progress) {}
|
|
|
|
void cfdp::UserMock::eofRecvIndication(cfdp::TransactionId id) {}
|
2022-08-09 21:03:56 +02:00
|
|
|
void cfdp::UserMock::transactionFinishedIndication(TransactionFinishedParams finishedParams) {}
|
|
|
|
void cfdp::UserMock::metadataRecvdIndication(MetadataRecvParams params) {}
|
2022-08-10 09:39:57 +02:00
|
|
|
void cfdp::UserMock::fileSegmentRecvdIndication(FileSegmentRecvdParams params) {}
|
2022-08-09 19:00:47 +02:00
|
|
|
void cfdp::UserMock::reportIndication() {}
|
|
|
|
void cfdp::UserMock::suspendedIndication() {}
|
|
|
|
void cfdp::UserMock::resumedIndication() {}
|