blob: 704f08cd6bedb5db893d76355f7cc484d3bd17fc [file] [log] [blame]
Alexander Afanasyev08d984e2011-08-13 19:20:22 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2009 University of Washington
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
20#include "ccnx-route.h"
21
22#include "ns3/net-device.h"
23#include "ns3/assert.h"
24
25namespace ns3 {
26
27CcnxRoute::CcnxRoute ()
28{
29}
30
31void
32CcnxRoute::SetPrefix (const Ptr<Name::Components> &prefix)
33{
34 m_prefix = prefix;
35}
36
37const Name::Components&
38CcnxRoute::GetPrefix (void) const
39{
40 return *m_prefix;
41}
42
43void
44CcnxRoute::SetOutputDevice (Ptr<NetDevice> outputDevice)
45{
46 m_outputDevice = outputDevice;
47}
48
49Ptr<NetDevice>
50CcnxRoute::GetOutputDevice (void) const
51{
52 return m_outputDevice;
53}
54
55std::ostream& operator<< (std::ostream& os, CcnxRoute const& route)
56{
57 os << "prefix=" << route.GetPrefix () << ", dev=" << route.GetOutputDevice ()->GetIfIndex ();
58 return os;
59}
60
61} //namespace ns3