blob: fdadfb908eb2f9bf8e8a43b2b198adb3f817b6e0 [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 Pesavento3dade002019-03-19 11:29:56 -06003 * Copyright (c) 2014-2019, 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 Pesaventod8d4d982014-03-21 18:47:58 +010031namespace nfd {
Yukai Tu0a49d342015-09-13 12:54:22 +080032namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010033
Davide Pesaventoa3148082018-04-12 18:21:54 -040034NFD_LOG_MEMBER_DECL_SPECIALIZED((DatagramTransport<boost::asio::ip::udp, Unicast>));
35
Giulio Grassi624f6c62014-02-18 19:42:14 +010036/**
Yukai Tu0a49d342015-09-13 12:54:22 +080037 * \brief A Transport that communicates on a unicast UDP socket
Giulio Grassi624f6c62014-02-18 19:42:14 +010038 */
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020039class UnicastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Unicast>
Giulio Grassi624f6c62014-02-18 19:42:14 +010040{
41public:
Yukai Tu0a49d342015-09-13 12:54:22 +080042 UnicastUdpTransport(protocol::socket&& socket,
43 ndn::nfd::FacePersistency persistency,
Eric Newberry812d6152018-06-06 15:06:01 -070044 time::nanoseconds idleTimeout,
45 optional<ssize_t> overrideMtu = {});
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
Yukai Tu0a49d342015-09-13 12:54:22 +080063} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +010064} // namespace nfd
65
Junxiao Shi13546112015-10-14 19:33:07 -070066#endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP