NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
network-address.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
24 #include "network-address.hpp"
25 
26 namespace ndn {
27 namespace net {
28 
29 std::ostream&
30 operator<<(std::ostream& os, AddressScope scope)
31 {
32  switch (scope) {
34  return os << "nowhere";
35  case AddressScope::HOST:
36  return os << "host";
37  case AddressScope::LINK:
38  return os << "link";
40  return os << "global";
41  }
42  return os;
43 }
44 
46  boost::asio::ip::address ip,
47  boost::asio::ip::address broadcast,
48  uint8_t prefixLength,
49  AddressScope scope,
50  uint32_t flags)
51  : m_family(family)
52  , m_ip(ip)
53  , m_broadcast(broadcast)
54  , m_prefixLength(prefixLength)
55  , m_scope(scope)
56  , m_flags(flags)
57 {
58 }
59 
60 std::ostream&
61 operator<<(std::ostream& os, const NetworkAddress& addr)
62 {
63  return os << addr.getIp() << '/' << static_cast<unsigned int>(addr.getPrefixLength());
64 }
65 
66 } // namespace net
67 } // namespace ndn
Copyright (c) 2011-2015 Regents of the University of California.
boost::asio::ip::address getIp() const
Returns the IP address (v4 or v6)
Stores one IP address supported by a network interface.
uint8_t getPrefixLength() const
Returns the prefix length.
NetworkAddress(AddressFamily family, boost::asio::ip::address ip, boost::asio::ip::address broadcast, uint8_t prefixLength, AddressScope scope, uint32_t flags)
std::ostream & operator<<(std::ostream &os, AddressScope scope)