NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
unicast-udp-transport.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP
27 #define NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP
28 
29 #include "datagram-transport.hpp"
30 #include "core/scheduler.hpp"
31 
32 namespace nfd {
33 namespace face {
34 
38 class UnicastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Unicast>
39 {
40 public:
41  UnicastUdpTransport(protocol::socket&& socket,
42  ndn::nfd::FacePersistency persistency,
43  time::nanoseconds idleTimeout);
44 
45 protected:
46  virtual void
48 
49 private:
50  void
51  scheduleClosureWhenIdle();
52 
53 private:
54  const time::nanoseconds m_idleTimeout;
55  scheduler::ScopedEventId m_closeIfIdleEvent;
56 };
57 
58 } // namespace face
59 } // namespace nfd
60 
61 #endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP
Implements Transport for datagram-based protocols.
UnicastUdpTransport(protocol::socket &&socket, ndn::nfd::FacePersistency persistency, time::nanoseconds idleTimeout)
A Transport that communicates on a unicast UDP socket.
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
virtual void beforeChangePersistency(ndn::nfd::FacePersistency newPersistency) final
invoked before persistency is changed
cancels an event automatically upon destruction
Definition: scheduler.hpp:57