blob: 03f1c86616a607c606660d58cfe5727177ce2e5c [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/*
3 * Copyright (c) 2014-2018, 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
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/**
Yukai Tu0a49d342015-09-13 12:54:22 +080038 * \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:
Yukai Tu0a49d342015-09-13 12:54:22 +080043 UnicastUdpTransport(protocol::socket&& socket,
44 ndn::nfd::FacePersistency persistency,
Eric Newberry812d6152018-06-06 15:06:01 -070045 time::nanoseconds idleTimeout,
46 optional<ssize_t> overrideMtu = {});
Davide Pesavento8728a252015-11-06 04:01:22 +010047
48protected:
Yanbiao Li32dab972016-11-27 12:26:09 +080049 bool
50 canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const final;
51
52 void
53 afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) final;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070054
55private:
56 void
Davide Pesavento8728a252015-11-06 04:01:22 +010057 scheduleClosureWhenIdle();
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070058
59private:
Davide Pesavento8728a252015-11-06 04:01:22 +010060 const time::nanoseconds m_idleTimeout;
Davide Pesavento292e5e12015-03-13 02:08:33 +010061 scheduler::ScopedEventId m_closeIfIdleEvent;
Giulio Grassi624f6c62014-02-18 19:42:14 +010062};
63
Yukai Tu0a49d342015-09-13 12:54:22 +080064} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +010065} // namespace nfd
66
Junxiao Shi13546112015-10-14 19:33:07 -070067#endif // NFD_DAEMON_FACE_UNICAST_UDP_TRANSPORT_HPP