| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #ifndef NFD_FACE_MULTICAST_UDP_FACE_HPP |
| #define NFD_FACE_MULTICAST_UDP_FACE_HPP |
| |
| #include "datagram-face.hpp" |
| |
| namespace nfd { |
| |
| /** |
| * \brief Implementation of Face abstraction that uses |
| * multicast UDP as underlying transport mechanism |
| */ |
| class MulticastUdpFace : public DatagramFace<boost::asio::ip::udp> |
| { |
| public: |
| /** |
| * \brief Creates a UDP-based face for multicast communication |
| */ |
| MulticastUdpFace(const shared_ptr<protocol::socket>& socket, |
| const protocol::endpoint& localEndpoint); |
| |
| const protocol::endpoint& |
| getMulticastGroup() const; |
| |
| // from Face |
| virtual void |
| sendInterest(const Interest& interest); |
| |
| virtual void |
| sendData(const Data& data); |
| |
| virtual bool |
| isMultiAccess() const; |
| |
| private: |
| protocol::endpoint m_multicastGroup; |
| }; |
| |
| } // namespace nfd |
| |
| #endif // NFD_FACE_MULTICAST_UDP_FACE_HPP |