26 #ifndef NFD_DAEMON_FACE_LP_RELIABILITY_HPP 27 #define NFD_DAEMON_FACE_LP_RELIABILITY_HPP 110 using UnackedFrags = std::map<lp::Sequence, UnackedFrag>;
140 std::vector<lp::Sequence>
146 std::vector<lp::Sequence>
183 size_t nGreaterSeqAcks;
184 shared_ptr<NetPkt> netPkt;
195 std::vector<UnackedFrags::iterator> unackedFrags;
208 UnackedFrags m_unackedFrags;
215 std::queue<lp::Sequence> m_ackQueue;
218 bool m_isIdleAckTimerRunning;
225 #endif // NFD_DAEMON_FACE_LP_RELIABILITY_HPP #define PUBLIC_WITH_TESTS_ELSE_PRIVATE
size_t maxRetx
maximum number of retransmissions for an LpPacket
void setOptions(const Options &options)
set options for reliability
GenericLinkService is a LinkService that implements the NDNLPv2 protocol.
void processIncomingPacket(const lp::Packet &pkt)
extract and parse all Acks and add Ack for contained Fragment (if any) to AckQueue
void piggyback(lp::Packet &pkt, ssize_t mtu)
called by GenericLinkService to attach Acks onto an outgoing LpPacket
void handleOutgoing(std::vector< lp::Packet > &frags, lp::Packet &&pkt, bool isInterest)
observe outgoing fragment(s) of a network packet and store for potential retransmission
provides a lightweight signal / event system
bool isEnabled
enables link-layer reliability
uint64_t Sequence
represents a sequence number
static constexpr size_t RESERVED_HEADER_SPACE
TxSequence TLV-TYPE (3 octets) + TxSequence TLV-LENGTH (1 octet) + sizeof(lp::Sequence)
Table::const_iterator iterator
size_t seqNumLossThreshold
a fragment is considered lost if this number of fragments with greater sequence numbers are acknowled...
Copyright (c) 2011-2015 Regents of the University of California.
const GenericLinkService * getLinkService() const
LpReliability(const Options &options, GenericLinkService *linkService)
A scoped handle of scheduled event.
implements the Mean-Deviation RTT estimator
signal::Signal< LpReliability, Interest > onDroppedInterest
signals on Interest dropped by reliability system for exceeding allowed number of retx
time::nanoseconds idleAckTimerPeriod
period between sending pending Acks in an IDLE packet
provides for reliable sending and receiving of link-layer packets