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 IsAny (void) const;
115  bool IsLocalhost (void) const;
119  bool IsBroadcast (void) const;
123  bool IsMulticast (void) const;
127  bool IsLocalMulticast (void) const;
138  Ipv4Address CombineMask (Ipv4Mask const &mask) const;
150  Ipv4Address GetSubnetDirectedBroadcast (Ipv4Mask const &mask) const;
163  bool IsSubnetDirectedBroadcast (Ipv4Mask const &mask) const;
170  static bool IsMatchingType (const Address &address);
176  operator Address () const;
185  static Ipv4Address ConvertFrom (const Address &address);
189  static Ipv4Address GetZero (void);
193  static Ipv4Address GetAny (void);
197  static Ipv4Address GetBroadcast (void);
201  static Ipv4Address GetLoopback (void);
202 
203 private:
204 
208  Address ConvertTo (void) const;
209 
215  static uint8_t GetType (void);
216  uint32_t m_address;
217 
225  friend bool operator == (Ipv4Address const &a, Ipv4Address const &b);
226 
234  friend bool operator != (Ipv4Address const &a, Ipv4Address const &b);
235 
243  friend bool operator < (Ipv4Address const &a, Ipv4Address const &b);
244 };
245 
257 class Ipv4Mask {
258 public:
262  Ipv4Mask ();
268  Ipv4Mask (uint32_t mask);
272  Ipv4Mask (char const *mask);
279  bool IsMatch (Ipv4Address a, Ipv4Address b) const;
284  bool IsEqual (Ipv4Mask other) const;
289  uint32_t Get (void) const;
294  void Set (uint32_t mask);
298  uint32_t GetInverse (void) const;
305  void Print (std::ostream &os) const;
309  uint16_t GetPrefixLength (void) const;
313  static Ipv4Mask GetLoopback (void);
317  static Ipv4Mask GetZero (void);
321  static Ipv4Mask GetOnes (void);
322 
323 private:
324  uint32_t m_mask;
325 };
326 
329 
337 std::ostream& operator<< (std::ostream& os, Ipv4Address const& address);
345 std::ostream& operator<< (std::ostream& os, Ipv4Mask const& mask);
353 std::istream & operator >> (std::istream &is, Ipv4Address &address);
361 std::istream & operator >> (std::istream &is, Ipv4Mask &mask);
362 
370 inline bool operator == (const Ipv4Address &a, const Ipv4Address &b)
371 {
372  return (a.m_address == b.m_address);
373 }
381 inline bool operator != (const Ipv4Address &a, const Ipv4Address &b)
382 {
383  return (a.m_address != b.m_address);
384 }
392 inline bool operator < (const Ipv4Address &a, const Ipv4Address &b)
393 {
394  return (a.m_address < b.m_address);
395 }
396 
402 class Ipv4AddressHash : public std::unary_function<Ipv4Address, size_t> {
403 public:
409  size_t operator() (Ipv4Address const &x) const;
410 };
411 
419 bool operator == (Ipv4Mask const &a, Ipv4Mask const &b);
427 bool operator != (Ipv4Mask const &a, Ipv4Mask const &b);
428 
429 } // namespace ns3
430 
431 #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 to operator.
Definition: ipv4-address.h:392
bool IsMatch(Ipv4Address a, Ipv4Address b) const
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:257
uint32_t m_address
IPv4 address.
Definition: ipv4-address.h:216
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.
bool IsAny(void) const
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:1471
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:324
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
bool IsLocalhost(void) const
friend bool operator==(Ipv4Address const &a, Ipv4Address const &b)
Equal to operator.
Definition: ipv4-address.h:370
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:381
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:402