blob: 4aa7233e67f6918ad80e8ab75525f14e1f6e636f [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 Pesaventoc0df94e2023-10-08 19:26:55 -04003 * Copyright (c) 2014-2023, 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 Pesaventoa9b09b62022-06-04 14:07:25 -040031#include <boost/asio/ip/udp.hpp>
32
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_MEMBER_DECL_SPECIALIZED((DatagramTransport<boost::asio::ip::udp, Unicast>));
36
Giulio Grassi624f6c62014-02-18 19:42:14 +010037/**
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040038 * \brief A Transport that communicates on a unicast UDP socket.
Giulio Grassi624f6c62014-02-18 19:42:14 +010039 */
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020040class UnicastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Unicast>
Giulio Grassi624f6c62014-02-18 19:42:14 +010041{
42public:
Davide Pesaventoc0df94e2023-10-08 19:26:55 -040043 UnicastUdpTransport(boost::asio::ip::udp::socket&& socket,
Yukai Tu0a49d342015-09-13 12:54:22 +080044 ndn::nfd::FacePersistency persistency,
Eric Newberrycb6551e2020-03-02 14:12:16 -080045 time::nanoseconds idleTimeout);
Davide Pesavento8728a252015-11-06 04:01:22 +010046
47protected:
Yanbiao Li32dab972016-11-27 12:26:09 +080048 bool
49 canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const final;
50
51 void
52 afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) final;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070053
54private:
55 void
Davide Pesavento8728a252015-11-06 04:01:22 +010056 scheduleClosureWhenIdle();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070057
58private:
Davide Pesavento8728a252015-11-06 04:01:22 +010059 const time::nanoseconds m_idleTimeout;
Davide Pesavento292e5e12015-03-13 02:08:33 +010060 scheduler::ScopedEventId m_closeIfIdleEvent;
Giulio Grassi624f6c62014-02-18 19:42:14 +010061};
62
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040063} // namespace nfd::face
Giulio Grassi624f6c62014-02-18 19:42:14 +010064
Junxiao Shi13546112015-10-14 19:33:07 -070065#endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP