blob: fd6d64589eba6b3f12301b2cda8500513e2fbdbb [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, 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"
Giulio Grassi624f6c62014-02-18 19:42:14 +010030
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050031#include <ndn-cxx/util/scheduler.hpp>
32
Davide Pesaventoa9b09b62022-06-04 14:07:25 -040033#include <boost/asio/ip/udp.hpp>
34
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035namespace nfd::face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010036
Davide Pesaventoa3148082018-04-12 18:21:54 -040037NFD_LOG_MEMBER_DECL_SPECIALIZED((DatagramTransport<boost::asio::ip::udp, Unicast>));
38
Giulio Grassi624f6c62014-02-18 19:42:14 +010039/**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040040 * \brief A Transport that communicates on a unicast UDP socket.
Giulio Grassi624f6c62014-02-18 19:42:14 +010041 */
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020042class UnicastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Unicast>
Giulio Grassi624f6c62014-02-18 19:42:14 +010043{
44public:
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040045 UnicastUdpTransport(boost::asio::ip::udp::socket&& socket,
Yukai Tu0a49d342015-09-13 12:54:22 +080046 ndn::nfd::FacePersistency persistency,
Eric Newberrycb6551e2020-03-02 14:12:16 -080047 time::nanoseconds idleTimeout);
Davide Pesavento8728a252015-11-06 04:01:22 +010048
49protected:
Yanbiao Li32dab972016-11-27 12:26:09 +080050 bool
51 canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const final;
52
53 void
54 afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) final;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070055
56private:
57 void
Davide Pesavento8728a252015-11-06 04:01:22 +010058 scheduleClosureWhenIdle();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070059
60private:
Davide Pesavento8728a252015-11-06 04:01:22 +010061 const time::nanoseconds m_idleTimeout;
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050062 ndn::scheduler::ScopedEventId m_closeIfIdleEvent;
Giulio Grassi624f6c62014-02-18 19:42:14 +010063};
64
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040065} // namespace nfd::face
Giulio Grassi624f6c62014-02-18 19:42:14 +010066
Junxiao Shi13546112015-10-14 19:33:07 -070067#endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP