This documentation is not the Latest Release.
A Discrete-Event Network Simulator
API
ipv4-address.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2005 INRIA
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  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 
21 #ifndef IPV4_ADDRESS_H
22 #define IPV4_ADDRESS_H
23 
24 #include <stdint.h>
25 #include <ostream>
26 #include "ns3/address.h"
27 #include "ns3/attribute-helper.h"
28 
29 namespace ns3 {
30 
31 class Ipv4Mask;
32 
40 class Ipv4Address {
41 public:
42  Ipv4Address ();
47  explicit Ipv4Address (uint32_t address);
57  Ipv4Address (char const *address);
62  uint32_t Get (void) const;
67  void Set (uint32_t address);
77  void Set (char const *address);
83  bool IsEqual (const Ipv4Address &other) const
84  {
85  return m_address == other.m_address;
86  }
93  void Serialize (uint8_t buf[4]) const;
100  static Ipv4Address Deserialize (const uint8_t buf[4]);
107  void Print (std::ostream &os) const;
111  bool IsBroadcast (void) const;
115  bool IsMulticast (void) const;
119  bool IsLocalMulticast (void) const;
130  Ipv4Address CombineMask (Ipv4Mask const &mask) const;
142  Ipv4Address GetSubnetDirectedBroadcast (Ipv4Mask const &mask) const;
155  bool IsSubnetDirectedBroadcast (Ipv4Mask const &mask) const;
162  static bool IsMatchingType (const Address &address);
168  operator Address () const;
177  static Ipv4Address ConvertFrom (const Address &address);
181  static Ipv4Address GetZero (void);
185  static Ipv4Address GetAny (void);
189  static Ipv4Address GetBroadcast (void);
193  static Ipv4Address GetLoopback (void);
194 
195 private:
196 
200  Address ConvertTo (void) const;
201 
207  static uint8_t GetType (void);
208  uint32_t m_address;
209 
210  friend bool operator == (Ipv4Address const &a, Ipv4Address const &b);
211  friend bool operator != (Ipv4Address const &a, Ipv4Address const &b);
212  friend bool operator < (Ipv4Address const &a, Ipv4Address const &b);
213 };
214 
226 class Ipv4Mask {
227 public:
231  Ipv4Mask ();
237  Ipv4Mask (uint32_t mask);
241  Ipv4Mask (char const *mask);
248  bool IsMatch (Ipv4Address a, Ipv4Address b) const;
253  bool IsEqual (Ipv4Mask other) const;
258  uint32_t Get (void) const;
263  void Set (uint32_t mask);
267  uint32_t GetInverse (void) const;
274  void Print (std::ostream &os) const;
278  uint16_t GetPrefixLength (void) const;
282  static Ipv4Mask GetLoopback (void);
286  static Ipv4Mask GetZero (void);
290  static Ipv4Mask GetOnes (void);
291 
292 private:
293  uint32_t m_mask;
294 };
295 
298 
306 std::ostream& operator<< (std::ostream& os, Ipv4Address const& address);
314 std::ostream& operator<< (std::ostream& os, Ipv4Mask const& mask);
322 std::istream & operator >> (std::istream &is, Ipv4Address &address);
330 std::istream & operator >> (std::istream &is, Ipv4Mask &mask);
331 
339 inline bool operator == (const Ipv4Address &a, const Ipv4Address &b)
340 {
341  return (a.m_address == b.m_address);
342 }
350 inline bool operator != (const Ipv4Address &a, const Ipv4Address &b)
351 {
352  return (a.m_address != b.m_address);
353 }
361 inline bool operator < (const Ipv4Address &a, const Ipv4Address &b)
362 {
363  return (a.m_address < b.m_address);
364 }
365 
371 class Ipv4AddressHash : public std::unary_function<Ipv4Address, size_t> {
372 public:
378  size_t operator() (Ipv4Address const &x) const;
379 };
380 
388 bool operator == (Ipv4Mask const &a, Ipv4Mask const &b);
396 bool operator != (Ipv4Mask const &a, Ipv4Mask const &b);
397 
398 } // namespace ns3
399 
400 #endif /* IPV4_ADDRESS_H */
Ipv4Mask()
Will initialize to a garbage value (0x66666666)
Definition: ipv4-address.cc:78
static Ipv4Address Deserialize(const uint8_t buf[4])
std::istream & operator>>(std::istream &is, Angles &a)
initialize a struct Angles from input
Definition: angles.cc:48
static Ipv4Mask GetOnes(void)
static Ipv4Address GetAny(void)
size_t operator()(Ipv4Address const &x) const
Returns the hash of the address.
friend bool operator<(Ipv4Address const &a, Ipv4Address const &b)
Less than operator.
Definition: ipv4-address.h:361
bool IsMatch(Ipv4Address a, Ipv4Address b) const
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:226
uint32_t m_address
IPv4 address.
Definition: ipv4-address.h:208
bool IsLocalMulticast(void) const
bool IsMulticast(void) const
Ipv4Address CombineMask(Ipv4Mask const &mask) const
Combine this address with a network mask.
Ipv4Address GetSubnetDirectedBroadcast(Ipv4Mask const &mask) const
Generate subnet-directed broadcast address corresponding to mask.
a polymophic address class
Definition: address.h:90
bool IsSubnetDirectedBroadcast(Ipv4Mask const &mask) const
Generate subnet-directed broadcast address corresponding to mask.
uint32_t Get(void) const
Get the host-order 32-bit IP address.
static Ipv4Mask GetZero(void)
bool IsBroadcast(void) const
void Serialize(uint8_t buf[4]) const
Serialize this address to a 4-byte buffer.
void Print(std::ostream &os) const
Print this address to the given output stream.
static bool IsMatchingType(const Address &address)
static Ipv4Address GetBroadcast(void)
bool operator<(const int64x64_t &lhs, const int64x64_t &rhs)
Less than operator.
Definition: int64x64-128.h:356
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
bool operator!=(Callback< R, T1, T2, T3, T4, T5, T6, T7, T8, T9 > a, Callback< R, T1, T2, T3, T4, T5, T6, T7, T8, T9 > b)
Inequality test.
Definition: callback.h:1462
Every class exported by the ns3 library is enclosed in the ns3 namespace.
bool IsEqual(const Ipv4Address &other) const
Comparison operation between two Ipv4Addresses.
Definition: ipv4-address.h:83
void Set(uint32_t mask)
input mask is in host order.
static Ipv4Address GetZero(void)
static Ipv4Address GetLoopback(void)
void Print(std::ostream &os) const
Print this mask to the given output stream.
static Ipv4Mask GetLoopback(void)
Address ConvertTo(void) const
Convert to an Address type.
uint32_t m_mask
IP mask.
Definition: ipv4-address.h:293
void Set(uint32_t address)
input address is in host order.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:40
friend bool operator==(Ipv4Address const &a, Ipv4Address const &b)
Equal to operator.
Definition: ipv4-address.h:339
bool IsEqual(Ipv4Mask other) const
bool operator==(const EventId &a, const EventId &b)
Definition: event-id.cc:95
static uint8_t GetType(void)
Get the underlying address type (automatically assigned).
uint32_t Get(void) const
Get the host-order 32-bit IP mask.
friend bool operator!=(Ipv4Address const &a, Ipv4Address const &b)
Not equal to operator.
Definition: ipv4-address.h:350
static Ipv4Address ConvertFrom(const Address &address)
tuple address
Definition: first.py:37
uint32_t GetInverse(void) const
Return the inverse mask in host order.
#define ATTRIBUTE_HELPER_HEADER(type)
Declare the attribute value, accessor and checkers for class type.
uint16_t GetPrefixLength(void) const
Class providing an hash for IPv4 addresses.
Definition: ipv4-address.h:371