blob: a3b022446ccab014947824c8a2a9b2678370e397 [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -07002/*
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
Alexander Afanasyev98256102011-08-14 01:00:02 -070022#include "ns3/ccnx-face.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070023#include "ns3/assert.h"
24
25namespace ns3 {
26
27CcnxRoute::CcnxRoute ()
28{
29}
30
31void
Ilya Moiseenko2bd1bc32011-08-23 16:01:35 -070032CcnxRoute::SetPrefix (const Ptr<CcnxNameComponents> &prefix)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070033{
34 m_prefix = prefix;
35}
36
Ilya Moiseenko2bd1bc32011-08-23 16:01:35 -070037const CcnxNameComponents&
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070038CcnxRoute::GetPrefix (void) const
39{
40 return *m_prefix;
41}
42
43void
Alexander Afanasyev98256102011-08-14 01:00:02 -070044CcnxRoute::SetOutputFace (Ptr<CcnxFace> outputFace)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070045{
Alexander Afanasyev98256102011-08-14 01:00:02 -070046 m_outputFace = outputFace;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070047}
48
Alexander Afanasyev98256102011-08-14 01:00:02 -070049Ptr<CcnxFace>
50CcnxRoute::GetOutputFace (void) const
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070051{
Alexander Afanasyev98256102011-08-14 01:00:02 -070052 return m_outputFace;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070053}
54
55std::ostream& operator<< (std::ostream& os, CcnxRoute const& route)
56{
Alexander Afanasyev98256102011-08-14 01:00:02 -070057 os << "prefix=" << route.GetPrefix () << ", " << route.GetOutputFace ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070058 return os;
59}
60
61} //namespace ns3