Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NFD_FACE_MULTICAST_UDP_FACE_HPP |
| 8 | #define NFD_FACE_MULTICAST_UDP_FACE_HPP |
| 9 | |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 10 | #include "datagram-face.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 11 | |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 12 | namespace nfd { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 13 | |
| 14 | /** |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 15 | * \brief Implementation of Face abstraction that uses |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 16 | * multicast UDP as underlying transport mechanism |
| 17 | */ |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 18 | class MulticastUdpFace : public DatagramFace<boost::asio::ip::udp> |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 19 | { |
| 20 | public: |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 21 | /** |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 22 | * \brief Creates a UDP-based face for multicast communication |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 23 | */ |
| 24 | explicit |
| 25 | MulticastUdpFace(const shared_ptr<protocol::socket>& socket); |
| 26 | |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 27 | const protocol::endpoint& |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 28 | getMulticastGroup() const; |
| 29 | |
| 30 | // from Face |
| 31 | virtual void |
| 32 | sendInterest(const Interest& interest); |
| 33 | |
| 34 | virtual void |
| 35 | sendData(const Data& data); |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 36 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 37 | virtual bool |
| 38 | isMultiAccess() const; |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 39 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | private: |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame^] | 41 | protocol::endpoint m_multicastGroup; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | } // namespace nfd |
| 45 | |
| 46 | #endif // NFD_FACE_MULTICAST_UDP_FACE_HPP |