blob: 80cd70b3592d49dabc1ccdbece1e931990438932 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventob84bd3a2016-04-22 02:21:45 +02003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -07004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shi1e46be32015-01-08 20:18:05 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Junxiao Shi13546112015-10-14 19:33:07 -070026#ifndef NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP
27#define NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
Yukai Tu0a49d342015-09-13 12:54:22 +080029#include "datagram-transport.hpp"
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070030#include "core/scheduler.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
Davide Pesaventod8d4d982014-03-21 18:47:58 +010032namespace nfd {
Yukai Tu0a49d342015-09-13 12:54:22 +080033namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
35/**
Yukai Tu0a49d342015-09-13 12:54:22 +080036 * \brief A Transport that communicates on a unicast UDP socket
Giulio Grassi624f6c62014-02-18 19:42:14 +010037 */
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020038class UnicastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Unicast>
Giulio Grassi624f6c62014-02-18 19:42:14 +010039{
40public:
Yukai Tu0a49d342015-09-13 12:54:22 +080041 UnicastUdpTransport(protocol::socket&& socket,
42 ndn::nfd::FacePersistency persistency,
Davide Pesavento8728a252015-11-06 04:01:22 +010043 time::nanoseconds idleTimeout);
44
45protected:
46 virtual void
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020047 beforeChangePersistency(ndn::nfd::FacePersistency newPersistency) final;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070048
49private:
50 void
Davide Pesavento8728a252015-11-06 04:01:22 +010051 scheduleClosureWhenIdle();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070052
53private:
Davide Pesavento8728a252015-11-06 04:01:22 +010054 const time::nanoseconds m_idleTimeout;
Davide Pesavento292e5e12015-03-13 02:08:33 +010055 scheduler::ScopedEventId m_closeIfIdleEvent;
Giulio Grassi624f6c62014-02-18 19:42:14 +010056};
57
Yukai Tu0a49d342015-09-13 12:54:22 +080058} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +010059} // namespace nfd
60
Junxiao Shi13546112015-10-14 19:33:07 -070061#endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP