diff options
author | Angelo Mantellini <angelo.mantellini@cisco.com> | 2020-02-27 16:06:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2020-02-27 16:06:50 +0000 |
commit | ee91ccd88a2fe1de74e4128ef84840e58ec70295 (patch) | |
tree | 9a435acaee53a8d455b1c1f8212f20ffb9a4de70 /libtransport/src/protocols/protocol.h | |
parent | 0fe06328d8bb8a174f0e9a246b437e5eaf2a7628 (diff) | |
parent | 443f9e81c2f721898c1e7edf2940172fef6f55fe (diff) |
Merge "[HICN-539] Expose portal APIs to applications"
Diffstat (limited to 'libtransport/src/protocols/protocol.h')
-rw-r--r-- | libtransport/src/protocols/protocol.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/libtransport/src/protocols/protocol.h b/libtransport/src/protocols/protocol.h index c094adaae..949380959 100644 --- a/libtransport/src/protocols/protocol.h +++ b/libtransport/src/protocols/protocol.h @@ -67,15 +67,18 @@ class TransportProtocol : public implementation::BasePortal::ConsumerCallback, // Events generated by the indexing virtual void onContentReassembled(std::error_code ec); - virtual void onPacketDropped(Interest::Ptr &&interest, - ContentObject::Ptr &&content_object) = 0; - virtual void onReassemblyFailed(std::uint32_t missing_segment) = 0; + virtual void onPacketDropped( + Interest::Ptr &&interest, + ContentObject::Ptr &&content_object) override = 0; + virtual void onReassemblyFailed(std::uint32_t missing_segment) override = 0; protected: // Consumer Callback virtual void reset() = 0; - virtual void onContentObject(Interest::Ptr &&i, ContentObject::Ptr &&c) = 0; - virtual void onTimeout(Interest::Ptr &&i) = 0; + virtual void onContentObject(Interest::Ptr &&i, + ContentObject::Ptr &&c) override = 0; + virtual void onTimeout(Interest::Ptr &&i) override = 0; + virtual void onError(std::error_code ec) override {} protected: implementation::ConsumerSocket *socket_; |