Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 2 | /* |
Teng Liang | 39465c2 | 2018-11-12 19:43:04 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_DAEMON_FACE_GENERIC_LINK_SERVICE_HPP |
| 27 | #define NFD_DAEMON_FACE_GENERIC_LINK_SERVICE_HPP |
| 28 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 29 | #include "link-service.hpp" |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 30 | #include "lp-fragmenter.hpp" |
| 31 | #include "lp-reassembler.hpp" |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 32 | #include "lp-reliability.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 33 | |
| 34 | namespace nfd { |
| 35 | namespace face { |
| 36 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 37 | /** \brief counters provided by GenericLinkService |
| 38 | * \note The type name 'GenericLinkServiceCounters' is implementation detail. |
| 39 | * Use 'GenericLinkService::Counters' in public API. |
| 40 | */ |
| 41 | class GenericLinkServiceCounters : public virtual LinkService::Counters |
| 42 | { |
| 43 | public: |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 44 | /** \brief count of failed fragmentations |
| 45 | */ |
| 46 | PacketCounter nFragmentationErrors; |
| 47 | |
| 48 | /** \brief count of outgoing LpPackets dropped due to exceeding MTU limit |
| 49 | * |
| 50 | * If this counter is non-zero, the operator should enable fragmentation. |
| 51 | */ |
| 52 | PacketCounter nOutOverMtu; |
| 53 | |
| 54 | /** \brief count of invalid LpPackets dropped before reassembly |
| 55 | */ |
| 56 | PacketCounter nInLpInvalid; |
| 57 | |
| 58 | /** \brief count of network-layer packets currently being reassembled |
| 59 | */ |
| 60 | SizeCounter<LpReassembler> nReassembling; |
| 61 | |
| 62 | /** \brief count of dropped partial network-layer packets due to reassembly timeout |
| 63 | */ |
| 64 | PacketCounter nReassemblyTimeouts; |
| 65 | |
| 66 | /** \brief count of invalid reassembled network-layer packets dropped |
| 67 | */ |
| 68 | PacketCounter nInNetInvalid; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 69 | |
| 70 | /** \brief count of network-layer packets that did not require retransmission of a fragment |
| 71 | */ |
| 72 | PacketCounter nAcknowledged; |
| 73 | |
| 74 | /** \brief count of network-layer packets that had at least one fragment retransmitted, but were |
| 75 | * eventually received in full |
| 76 | */ |
| 77 | PacketCounter nRetransmitted; |
| 78 | |
| 79 | /** \brief count of network-layer packets dropped because a fragment reached the maximum number |
| 80 | * of retransmissions |
| 81 | */ |
| 82 | PacketCounter nRetxExhausted; |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 83 | |
| 84 | /** \brief count of outgoing LpPackets that were marked with congestion marks |
| 85 | */ |
| 86 | PacketCounter nCongestionMarked; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 87 | }; |
| 88 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 89 | /** \brief GenericLinkService is a LinkService that implements the NDNLPv2 protocol |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 90 | * \sa https://redmine.named-data.net/projects/nfd/wiki/NDNLPv2 |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 91 | */ |
Davide Pesavento | 16916ae | 2019-03-29 23:53:26 -0400 | [diff] [blame] | 92 | class GenericLinkService FINAL_UNLESS_WITH_TESTS : public LinkService |
| 93 | , protected virtual GenericLinkServiceCounters |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 94 | { |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 95 | public: |
| 96 | /** \brief Options that control the behavior of GenericLinkService |
| 97 | */ |
| 98 | class Options |
| 99 | { |
| 100 | public: |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 101 | constexpr |
| 102 | Options() noexcept |
| 103 | { |
| 104 | } |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 105 | |
| 106 | public: |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 107 | /** \brief enables encoding of IncomingFaceId, and decoding of NextHopFaceId and CachePolicy |
| 108 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 109 | bool allowLocalFields = false; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 110 | |
| 111 | /** \brief enables fragmentation |
| 112 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 113 | bool allowFragmentation = false; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 114 | |
| 115 | /** \brief options for fragmentation |
| 116 | */ |
| 117 | LpFragmenter::Options fragmenterOptions; |
| 118 | |
| 119 | /** \brief enables reassembly |
| 120 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 121 | bool allowReassembly = false; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 122 | |
| 123 | /** \brief options for reassembly |
| 124 | */ |
| 125 | LpReassembler::Options reassemblerOptions; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 126 | |
| 127 | /** \brief options for reliability |
| 128 | */ |
| 129 | LpReliability::Options reliabilityOptions; |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 130 | |
| 131 | /** \brief enables send queue congestion detection and marking |
| 132 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 133 | bool allowCongestionMarking = false; |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 134 | |
| 135 | /** \brief starting value for congestion marking interval |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 136 | * |
| 137 | * The default value (100 ms) is taken from RFC 8289 (CoDel). |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 138 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 139 | time::nanoseconds baseCongestionMarkingInterval = 100_ms; |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 140 | |
| 141 | /** \brief default congestion threshold in bytes |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 142 | * |
| 143 | * The default value (64 KiB) works well for a queue capacity of 200 KiB. |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 144 | */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 145 | size_t defaultCongestionThreshold = 65536; |
Teng Liang | fdcbb4d | 2018-01-27 16:01:35 -0700 | [diff] [blame] | 146 | |
| 147 | /** \brief enables self-learning forwarding support |
| 148 | */ |
Teng Liang | 39465c2 | 2018-11-12 19:43:04 -0700 | [diff] [blame] | 149 | bool allowSelfLearning = true; |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 150 | }; |
| 151 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 152 | /** \brief counters provided by GenericLinkService |
| 153 | */ |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 154 | using Counters = GenericLinkServiceCounters; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 155 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 156 | explicit |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 157 | GenericLinkService(const Options& options = {}); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 158 | |
| 159 | /** \brief get Options used by GenericLinkService |
| 160 | */ |
| 161 | const Options& |
| 162 | getOptions() const; |
| 163 | |
| 164 | /** \brief sets Options used by GenericLinkService |
| 165 | */ |
| 166 | void |
| 167 | setOptions(const Options& options); |
| 168 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 169 | const Counters& |
Davide Pesavento | 16916ae | 2019-03-29 23:53:26 -0400 | [diff] [blame] | 170 | getCounters() const OVERRIDE_WITH_TESTS_ELSE_FINAL; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 171 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 172 | PROTECTED_WITH_TESTS_ELSE_PRIVATE: // send path |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 173 | /** \brief request an IDLE packet to transmit pending service fields |
| 174 | */ |
| 175 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 176 | requestIdlePacket(const EndpointId& endpointId); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 177 | |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 178 | /** \brief send an LpPacket to \p endpointId |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 179 | */ |
| 180 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 181 | sendLpPacket(lp::Packet&& pkt, const EndpointId& endpointId); |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 182 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 183 | /** \brief send Interest |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 184 | */ |
| 185 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 186 | doSendInterest(const Interest& interest, const EndpointId& endpointId) OVERRIDE_WITH_TESTS_ELSE_FINAL; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 187 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 188 | /** \brief send Data |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 189 | */ |
| 190 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 191 | doSendData(const Data& data, const EndpointId& endpointId) OVERRIDE_WITH_TESTS_ELSE_FINAL; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 192 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 193 | /** \brief send Nack |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 194 | */ |
| 195 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 196 | doSendNack(const ndn::lp::Nack& nack, const EndpointId& endpointId) OVERRIDE_WITH_TESTS_ELSE_FINAL; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 197 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 198 | private: // send path |
Eric Newberry | ee400b5 | 2016-11-24 14:12:48 +0000 | [diff] [blame] | 199 | /** \brief encode link protocol fields from tags onto an outgoing LpPacket |
| 200 | * \param netPkt network-layer packet to extract tags from |
| 201 | * \param lpPacket LpPacket to add link protocol fields to |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 202 | */ |
Eric Newberry | ee400b5 | 2016-11-24 14:12:48 +0000 | [diff] [blame] | 203 | void |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 204 | encodeLpFields(const ndn::PacketBase& netPkt, lp::Packet& lpPacket); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 205 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 206 | /** \brief send a complete network layer packet |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 207 | * \param pkt LpPacket containing a complete network layer packet |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 208 | * \param endpointId destination endpoint to which LpPacket will be sent |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 209 | * \param isInterest whether the network layer packet is an Interest |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 210 | */ |
| 211 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 212 | sendNetPacket(lp::Packet&& pkt, const EndpointId& endpointId, bool isInterest); |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 213 | |
| 214 | /** \brief assign a sequence number to an LpPacket |
| 215 | */ |
| 216 | void |
| 217 | assignSequence(lp::Packet& pkt); |
| 218 | |
| 219 | /** \brief assign consecutive sequence numbers to LpPackets |
| 220 | */ |
| 221 | void |
| 222 | assignSequences(std::vector<lp::Packet>& pkts); |
| 223 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 224 | /** \brief if the send queue is found to be congested, add a congestion mark to the packet |
| 225 | * according to CoDel |
| 226 | * \sa https://tools.ietf.org/html/rfc8289 |
| 227 | */ |
| 228 | void |
| 229 | checkCongestionLevel(lp::Packet& pkt); |
| 230 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 231 | private: // receive path |
| 232 | /** \brief receive Packet from Transport |
| 233 | */ |
| 234 | void |
Davide Pesavento | 16916ae | 2019-03-29 23:53:26 -0400 | [diff] [blame] | 235 | doReceivePacket(Transport::Packet&& packet) OVERRIDE_WITH_TESTS_ELSE_FINAL; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 236 | |
| 237 | /** \brief decode incoming network-layer packet |
| 238 | * \param netPkt reassembled network-layer packet |
| 239 | * \param firstPkt LpPacket of first fragment |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 240 | * \param endpointId endpoint of peer who sent the packet |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 241 | * |
| 242 | * If decoding is successful, a receive signal is emitted; |
| 243 | * otherwise, a warning is logged. |
| 244 | */ |
| 245 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 246 | decodeNetPacket(const Block& netPkt, const lp::Packet& firstPkt, const EndpointId& endpointId); |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 247 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 248 | /** \brief decode incoming Interest |
| 249 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Interest |
| 250 | * \param firstPkt LpPacket of first fragment; must not have Nack field |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 251 | * \param endpointId endpoint of peer who sent the Interest |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 252 | * |
| 253 | * If decoding is successful, receiveInterest signal is emitted; |
| 254 | * otherwise, a warning is logged. |
| 255 | * |
| 256 | * \throw tlv::Error parse error in an LpHeader field |
| 257 | */ |
| 258 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 259 | decodeInterest(const Block& netPkt, const lp::Packet& firstPkt, const EndpointId& endpointId); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 260 | |
| 261 | /** \brief decode incoming Interest |
| 262 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Data |
| 263 | * \param firstPkt LpPacket of first fragment |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 264 | * \param endpointId endpoint of peer who sent the Data |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 265 | * |
| 266 | * If decoding is successful, receiveData signal is emitted; |
| 267 | * otherwise, a warning is logged. |
| 268 | * |
| 269 | * \throw tlv::Error parse error in an LpHeader field |
| 270 | */ |
| 271 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 272 | decodeData(const Block& netPkt, const lp::Packet& firstPkt, const EndpointId& endpointId); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 273 | |
| 274 | /** \brief decode incoming Interest |
| 275 | * \param netPkt reassembled network-layer packet; TLV-TYPE must be Interest |
| 276 | * \param firstPkt LpPacket of first fragment; must have Nack field |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 277 | * \param endpointId endpoint of peer who sent the Nack |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 278 | * |
| 279 | * If decoding is successful, receiveNack signal is emitted; |
| 280 | * otherwise, a warning is logged. |
| 281 | * |
| 282 | * \throw tlv::Error parse error in an LpHeader field |
| 283 | */ |
| 284 | void |
ashiqopu | 075bb7d | 2019-03-10 01:38:21 +0000 | [diff] [blame^] | 285 | decodeNack(const Block& netPkt, const lp::Packet& firstPkt, const EndpointId& endpointId); |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 286 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 287 | PROTECTED_WITH_TESTS_ELSE_PRIVATE: |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 288 | Options m_options; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 289 | LpFragmenter m_fragmenter; |
| 290 | LpReassembler m_reassembler; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 291 | LpReliability m_reliability; |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 292 | lp::Sequence m_lastSeqNo; |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 293 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 294 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 295 | /// Time to mark next packet due to send queue congestion |
| 296 | time::steady_clock::TimePoint m_nextMarkTime; |
| 297 | /// Time last packet was marked |
| 298 | time::steady_clock::TimePoint m_lastMarkTime; |
| 299 | /// number of marked packets in the current incident of congestion |
| 300 | size_t m_nMarkedSinceInMarkingState; |
| 301 | |
Eric Newberry | 185ab29 | 2017-03-28 06:45:39 +0000 | [diff] [blame] | 302 | friend class LpReliability; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 303 | }; |
| 304 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 305 | inline const GenericLinkService::Options& |
| 306 | GenericLinkService::getOptions() const |
| 307 | { |
| 308 | return m_options; |
| 309 | } |
| 310 | |
Eric Newberry | 4c3e6b8 | 2015-11-10 16:48:42 -0700 | [diff] [blame] | 311 | inline const GenericLinkService::Counters& |
| 312 | GenericLinkService::getCounters() const |
| 313 | { |
| 314 | return *this; |
| 315 | } |
| 316 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 317 | } // namespace face |
| 318 | } // namespace nfd |
| 319 | |
Eric Newberry | 86d3187 | 2015-09-23 16:24:59 -0700 | [diff] [blame] | 320 | #endif // NFD_DAEMON_FACE_GENERIC_LINK_SERVICE_HPP |