handle transfer done event, now has propper speed

This commit is contained in:
2023-08-09 23:49:28 +02:00
parent 6a802475c1
commit f429feaaa8
3 changed files with 30 additions and 0 deletions

View File

@ -77,6 +77,8 @@ class SHA1_NGCFT1 : public RegistryMessageModelEventI, public NGCFT1EventI {
bool onEvent(const Events::NGCFT1_recv_init&) override;
bool onEvent(const Events::NGCFT1_recv_data&) override;
bool onEvent(const Events::NGCFT1_send_data&) override; // const?
bool onEvent(const Events::NGCFT1_recv_done&) override;
bool onEvent(const Events::NGCFT1_send_done&) override;
bool sendFilePath(const Contact3 c, std::string_view file_name, std::string_view file_path) override;
};