Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, 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_TRANSPORT_HPP |
| 27 | #define NFD_DAEMON_FACE_TRANSPORT_HPP |
| 28 | |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 29 | #include "core/counter.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 30 | #include "face-log.hpp" |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 31 | #include <ndn-cxx/encoding/nfd-constants.hpp> |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | namespace face { |
| 35 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 36 | class Face; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 37 | class LinkService; |
| 38 | |
| 39 | /** \brief indicates the state of a transport |
| 40 | */ |
| 41 | enum class TransportState { |
| 42 | NONE, |
Davide Pesavento | 68ab43d | 2017-07-02 13:37:35 -0400 | [diff] [blame^] | 43 | UP, ///< the transport is up and can transmit packets |
| 44 | DOWN, ///< the transport is temporarily down, and is being recovered |
| 45 | CLOSING, ///< the transport is being closed gracefully, either by the peer or by a call to close() |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 46 | FAILED, ///< the transport is being closed due to a failure |
| 47 | CLOSED ///< the transport is closed, and can be safely deallocated |
| 48 | }; |
| 49 | |
| 50 | std::ostream& |
| 51 | operator<<(std::ostream& os, TransportState state); |
| 52 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 53 | /** \brief counters provided by Transport |
| 54 | * \note The type name 'TransportCounters' is implementation detail. |
| 55 | * Use 'Transport::Counters' in public API. |
| 56 | */ |
| 57 | class TransportCounters |
| 58 | { |
| 59 | public: |
| 60 | /** \brief count of incoming packets |
| 61 | * |
| 62 | * A 'packet' typically means a top-level TLV block. |
| 63 | * For a datagram-based transport, an incoming packet that cannot be parsed as TLV |
| 64 | * would not be counted. |
| 65 | */ |
| 66 | PacketCounter nInPackets; |
| 67 | |
| 68 | /** \brief count of outgoing packets |
| 69 | * |
| 70 | * A 'packet' typically means a top-level TLV block. |
| 71 | * This counter is incremented only if transport is UP. |
| 72 | */ |
| 73 | PacketCounter nOutPackets; |
| 74 | |
| 75 | /** \brief total incoming bytes |
| 76 | * |
| 77 | * This counter includes headers imposed by NFD (such as NDNLP), |
| 78 | * but excludes overhead of underlying protocol (such as IP header). |
| 79 | * For a datagram-based transport, an incoming packet that cannot be parsed as TLV |
| 80 | * would not be counted. |
| 81 | */ |
| 82 | ByteCounter nInBytes; |
| 83 | |
| 84 | /** \brief total outgoing bytes |
| 85 | * |
| 86 | * This counter includes headers imposed by NFD (such as NDNLP), |
| 87 | * but excludes overhead of underlying protocol (such as IP header). |
| 88 | * This counter is increased only if transport is UP. |
| 89 | */ |
| 90 | ByteCounter nOutBytes; |
| 91 | }; |
| 92 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 93 | /** \brief indicates the transport has no limit on payload size |
| 94 | */ |
| 95 | const ssize_t MTU_UNLIMITED = -1; |
| 96 | |
Junxiao Shi | 5b8a2b2 | 2015-10-22 17:20:44 -0700 | [diff] [blame] | 97 | /** \brief (for internal use) indicates MTU field is unset |
| 98 | */ |
| 99 | const ssize_t MTU_INVALID = -2; |
| 100 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 101 | /** \brief the lower part of a Face |
| 102 | * \sa Face |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 103 | */ |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 104 | class Transport : protected virtual TransportCounters, noncopyable |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 105 | { |
| 106 | public: |
| 107 | /** \brief identifies an endpoint on the link |
| 108 | */ |
| 109 | typedef uint64_t EndpointId; |
| 110 | |
| 111 | /** \brief stores a packet along with the remote endpoint |
| 112 | */ |
| 113 | class Packet |
| 114 | { |
| 115 | public: |
| 116 | Packet() = default; |
| 117 | |
| 118 | explicit |
| 119 | Packet(Block&& packet); |
| 120 | |
| 121 | public: |
| 122 | /** \brief the packet as a TLV block |
| 123 | */ |
| 124 | Block packet; |
| 125 | |
| 126 | /** \brief identifies the remote endpoint |
| 127 | * |
| 128 | * This ID is only meaningful in the context of the same Transport. |
| 129 | * Incoming packets from the same remote endpoint have the same EndpointId, |
| 130 | * and incoming packets from different remote endpoints have different EndpointIds. |
| 131 | */ |
| 132 | EndpointId remoteEndpoint; |
| 133 | }; |
| 134 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 135 | /** \brief counters provided by Transport |
| 136 | */ |
| 137 | typedef TransportCounters Counters; |
| 138 | |
Junxiao Shi | 5b8a2b2 | 2015-10-22 17:20:44 -0700 | [diff] [blame] | 139 | /** \brief constructor |
| 140 | * |
| 141 | * Transport constructor initializes static properties to invalid values. |
| 142 | * Subclass constructor must explicitly set every static property. |
| 143 | * |
| 144 | * This constructor initializes TransportState to UP; |
| 145 | * subclass constructor can rely on this default value. |
| 146 | */ |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 147 | Transport(); |
| 148 | |
| 149 | virtual |
| 150 | ~Transport(); |
| 151 | |
| 152 | public: |
| 153 | /** \brief set Face and LinkService for Transport |
| 154 | * \pre setFaceAndLinkService has not been called |
| 155 | */ |
| 156 | void |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 157 | setFaceAndLinkService(Face& face, LinkService& service); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 158 | |
| 159 | /** \return Face to which this Transport is attached |
| 160 | */ |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 161 | const Face* |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 162 | getFace() const; |
| 163 | |
| 164 | /** \return LinkService to which this Transport is attached |
| 165 | */ |
| 166 | const LinkService* |
| 167 | getLinkService() const; |
| 168 | |
| 169 | /** \return LinkService to which this Transport is attached |
| 170 | */ |
| 171 | LinkService* |
| 172 | getLinkService(); |
| 173 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 174 | virtual const Counters& |
| 175 | getCounters() const; |
| 176 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 177 | public: // upper interface |
| 178 | /** \brief request the transport to be closed |
| 179 | * |
| 180 | * This operation is effective only if transport is in UP or DOWN state, |
| 181 | * otherwise it has no effect. |
| 182 | * The transport changes state to CLOSING, and performs cleanup procedure. |
| 183 | * The state will be changed to CLOSED when cleanup is complete, which may |
| 184 | * happen synchronously or asynchronously. |
| 185 | */ |
| 186 | void |
| 187 | close(); |
| 188 | |
| 189 | /** \brief send a link-layer packet |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 190 | * \note This operation has no effect if \p getState() is neither UP nor DOWN |
| 191 | * \warning undefined behavior if packet size exceeds MTU limit |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 192 | */ |
| 193 | void |
| 194 | send(Packet&& packet); |
| 195 | |
| 196 | protected: // upper interface to be invoked by subclass |
| 197 | /** \brief receive a link-layer packet |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 198 | * \warning undefined behavior if packet size exceeds MTU limit |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 199 | */ |
| 200 | void |
| 201 | receive(Packet&& packet); |
| 202 | |
| 203 | public: // static properties |
| 204 | /** \return a FaceUri representing local endpoint |
| 205 | */ |
| 206 | FaceUri |
| 207 | getLocalUri() const; |
| 208 | |
| 209 | /** \return a FaceUri representing remote endpoint |
| 210 | */ |
| 211 | FaceUri |
| 212 | getRemoteUri() const; |
| 213 | |
| 214 | /** \return whether face is local or non-local for scope control purpose |
| 215 | */ |
| 216 | ndn::nfd::FaceScope |
| 217 | getScope() const; |
| 218 | |
| 219 | /** \return face persistency setting |
| 220 | */ |
| 221 | ndn::nfd::FacePersistency |
| 222 | getPersistency() const; |
| 223 | |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 224 | /** \brief check whether the face persistency can be changed to \p newPersistency |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 225 | * |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 226 | * This function serves as the external API, and invokes the protected function |
| 227 | * canChangePersistencyToImpl to perform further checks if \p newPersistency differs |
| 228 | * from the current persistency. |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 229 | * |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 230 | * \return true if the change can be performed, false otherwise |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 231 | */ |
| 232 | bool |
| 233 | canChangePersistencyTo(ndn::nfd::FacePersistency newPersistency) const; |
| 234 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 235 | /** \brief changes face persistency setting |
| 236 | */ |
| 237 | void |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 238 | setPersistency(ndn::nfd::FacePersistency newPersistency); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 239 | |
| 240 | /** \return whether face is point-to-point or multi-access |
| 241 | */ |
| 242 | ndn::nfd::LinkType |
| 243 | getLinkType() const; |
| 244 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 245 | /** \return maximum payload size |
| 246 | * \retval MTU_UNLIMITED transport has no limit on payload size |
| 247 | * |
| 248 | * This size is the maximum packet size that can be sent or received through this transport. |
| 249 | * |
| 250 | * For a datagram-based transport, this is typically the Maximum Transmission Unit (MTU), |
| 251 | * after the overhead of headers introduced by the transport has been accounted for. |
| 252 | * For a stream-based transport, this is typically unlimited (MTU_UNLIMITED). |
| 253 | */ |
| 254 | ssize_t |
| 255 | getMtu() const; |
| 256 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 257 | public: // dynamic properties |
| 258 | /** \return transport state |
| 259 | */ |
| 260 | TransportState |
| 261 | getState() const; |
| 262 | |
| 263 | /** \brief signals when transport state changes |
| 264 | */ |
| 265 | signal::Signal<Transport, TransportState/*old*/, TransportState/*new*/> afterStateChange; |
| 266 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 267 | /** \return expiration time of the transport |
| 268 | * \retval time::steady_clock::TimePoint::max() the transport has indefinite lifetime |
| 269 | */ |
| 270 | time::steady_clock::TimePoint |
| 271 | getExpirationTime() const; |
| 272 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 273 | protected: // properties to be set by subclass |
| 274 | void |
| 275 | setLocalUri(const FaceUri& uri); |
| 276 | |
| 277 | void |
| 278 | setRemoteUri(const FaceUri& uri); |
| 279 | |
| 280 | void |
| 281 | setScope(ndn::nfd::FaceScope scope); |
| 282 | |
| 283 | void |
| 284 | setLinkType(ndn::nfd::LinkType linkType); |
| 285 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 286 | void |
| 287 | setMtu(ssize_t mtu); |
| 288 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 289 | /** \brief set transport state |
| 290 | * |
| 291 | * Only the following transitions are valid: |
| 292 | * UP->DOWN, DOWN->UP, UP/DOWN->CLOSING/FAILED, CLOSING/FAILED->CLOSED |
| 293 | * |
| 294 | * \throw std::runtime_error transition is invalid. |
| 295 | */ |
| 296 | void |
| 297 | setState(TransportState newState); |
| 298 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 299 | void |
| 300 | setExpirationTime(const time::steady_clock::TimePoint& expirationTime); |
| 301 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 302 | protected: // to be overridden by subclass |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 303 | /** \brief invoked by canChangePersistencyTo to perform the check |
| 304 | * |
| 305 | * Base class implementation returns false. |
| 306 | * |
| 307 | * \param newPersistency the new persistency, guaranteed to be different from current persistency |
| 308 | */ |
| 309 | virtual bool |
| 310 | canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const; |
| 311 | |
| 312 | /** \brief invoked after the persistency has been changed |
| 313 | * |
| 314 | * The base class implementation does nothing. |
| 315 | * When overridden in a subclass, the function should update internal states |
| 316 | * after persistency setting has been changed. |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 317 | */ |
| 318 | virtual void |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 319 | afterChangePersistency(ndn::nfd::FacePersistency oldPersistency); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 320 | |
| 321 | /** \brief performs Transport specific operations to close the transport |
| 322 | * |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 323 | * This is invoked once by \p close() after changing state to CLOSING. |
| 324 | * It will not be invoked by Transport class if the transport is already CLOSING or CLOSED. |
| 325 | * |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 326 | * When the cleanup procedure is complete, this method should change state to CLOSED. |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 327 | * This transition can happen synchronously or asynchronously. |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 328 | */ |
| 329 | virtual void |
| 330 | doClose() = 0; |
| 331 | |
| 332 | private: // to be overridden by subclass |
| 333 | /** \brief performs Transport specific operations to send a packet |
| 334 | * \param packet the packet, which must be a well-formed TLV block |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 335 | * \pre state is either UP or DOWN |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 336 | */ |
| 337 | virtual void |
| 338 | doSend(Packet&& packet) = 0; |
| 339 | |
| 340 | private: |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 341 | Face* m_face; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 342 | LinkService* m_service; |
| 343 | FaceUri m_localUri; |
| 344 | FaceUri m_remoteUri; |
| 345 | ndn::nfd::FaceScope m_scope; |
| 346 | ndn::nfd::FacePersistency m_persistency; |
| 347 | ndn::nfd::LinkType m_linkType; |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 348 | ssize_t m_mtu; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 349 | TransportState m_state; |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 350 | time::steady_clock::TimePoint m_expirationTime; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 351 | }; |
| 352 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 353 | inline const Face* |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 354 | Transport::getFace() const |
| 355 | { |
| 356 | return m_face; |
| 357 | } |
| 358 | |
| 359 | inline const LinkService* |
| 360 | Transport::getLinkService() const |
| 361 | { |
| 362 | return m_service; |
| 363 | } |
| 364 | |
| 365 | inline LinkService* |
| 366 | Transport::getLinkService() |
| 367 | { |
| 368 | return m_service; |
| 369 | } |
| 370 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 371 | inline const Transport::Counters& |
| 372 | Transport::getCounters() const |
| 373 | { |
| 374 | return *this; |
| 375 | } |
| 376 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 377 | inline FaceUri |
| 378 | Transport::getLocalUri() const |
| 379 | { |
| 380 | return m_localUri; |
| 381 | } |
| 382 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 383 | inline void |
| 384 | Transport::setLocalUri(const FaceUri& uri) |
| 385 | { |
| 386 | m_localUri = uri; |
| 387 | } |
| 388 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 389 | inline FaceUri |
| 390 | Transport::getRemoteUri() const |
| 391 | { |
| 392 | return m_remoteUri; |
| 393 | } |
| 394 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 395 | inline void |
| 396 | Transport::setRemoteUri(const FaceUri& uri) |
| 397 | { |
| 398 | m_remoteUri = uri; |
| 399 | } |
| 400 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 401 | inline ndn::nfd::FaceScope |
| 402 | Transport::getScope() const |
| 403 | { |
| 404 | return m_scope; |
| 405 | } |
| 406 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 407 | inline void |
| 408 | Transport::setScope(ndn::nfd::FaceScope scope) |
| 409 | { |
| 410 | m_scope = scope; |
| 411 | } |
| 412 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 413 | inline ndn::nfd::FacePersistency |
| 414 | Transport::getPersistency() const |
| 415 | { |
| 416 | return m_persistency; |
| 417 | } |
| 418 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 419 | inline ndn::nfd::LinkType |
| 420 | Transport::getLinkType() const |
| 421 | { |
| 422 | return m_linkType; |
| 423 | } |
| 424 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 425 | inline void |
| 426 | Transport::setLinkType(ndn::nfd::LinkType linkType) |
| 427 | { |
| 428 | m_linkType = linkType; |
| 429 | } |
| 430 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 431 | inline ssize_t |
| 432 | Transport::getMtu() const |
| 433 | { |
| 434 | return m_mtu; |
| 435 | } |
| 436 | |
| 437 | inline void |
| 438 | Transport::setMtu(ssize_t mtu) |
| 439 | { |
| 440 | BOOST_ASSERT(mtu == MTU_UNLIMITED || mtu > 0); |
| 441 | m_mtu = mtu; |
| 442 | } |
| 443 | |
| 444 | inline TransportState |
| 445 | Transport::getState() const |
| 446 | { |
| 447 | return m_state; |
| 448 | } |
| 449 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 450 | inline time::steady_clock::TimePoint |
| 451 | Transport::getExpirationTime() const |
| 452 | { |
| 453 | return m_expirationTime; |
| 454 | } |
| 455 | |
| 456 | inline void |
| 457 | Transport::setExpirationTime(const time::steady_clock::TimePoint& expirationTime) |
| 458 | { |
| 459 | m_expirationTime = expirationTime; |
| 460 | } |
| 461 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 462 | std::ostream& |
| 463 | operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh); |
| 464 | |
| 465 | template<typename T> |
| 466 | typename std::enable_if<std::is_base_of<Transport, T>::value && |
| 467 | !std::is_same<Transport, T>::value, std::ostream&>::type |
| 468 | operator<<(std::ostream& os, const FaceLogHelper<T>& flh) |
| 469 | { |
| 470 | return os << FaceLogHelper<Transport>(flh.obj); |
| 471 | } |
| 472 | |
| 473 | } // namespace face |
| 474 | } // namespace nfd |
| 475 | |
| 476 | #endif // NFD_DAEMON_FACE_TRANSPORT_HPP |