A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
internet
helper
ipv4-address-helper.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008 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
#ifndef IPV4_ADDRESS_HELPER_H
20
#define IPV4_ADDRESS_HELPER_H
21
22
#include "ns3/ipv4-address.h"
23
#include "ns3/net-device-container.h"
24
#include "
ipv4-interface-container.h
"
25
26
namespace
ns3
{
27
47
class
Ipv4AddressHelper
48
{
49
public
:
54
Ipv4AddressHelper
();
55
64
Ipv4AddressHelper
(
Ipv4Address
network,
Ipv4Mask
mask,
65
Ipv4Address
base =
"0.0.0.1"
);
66
96
void
SetBase
(
Ipv4Address
network,
Ipv4Mask
mask,
97
Ipv4Address
base =
"0.0.0.1"
);
98
125
Ipv4Address
NewNetwork
(
void
);
126
151
Ipv4Address
NewAddress
(
void
);
152
181
Ipv4InterfaceContainer
Assign
(
const
NetDeviceContainer
&c);
182
183
private
:
189
uint32_t
NumAddressBits
(uint32_t maskbits)
const
;
190
191
uint32_t
m_network
;
192
uint32_t
m_mask
;
193
uint32_t
m_address
;
194
uint32_t
m_base
;
195
uint32_t
m_shift
;
196
uint32_t
m_max
;
197
};
198
199
}
// namespace ns3
200
201
#endif
/* IPV4_ADDRESS_HELPER_H */
ns3::Ipv4AddressHelper::m_max
uint32_t m_max
maximum allowed address
Definition:
ipv4-address-helper.h:196
ns3::Ipv4InterfaceContainer
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Definition:
ipv4-interface-container.h:54
ns3::Ipv4Mask
a class to represent an Ipv4 address mask
Definition:
ipv4-address.h:258
ns3::Ipv4AddressHelper::m_mask
uint32_t m_mask
network mask
Definition:
ipv4-address-helper.h:192
ipv4-interface-container.h
ns3::Ipv4AddressHelper::m_base
uint32_t m_base
base address
Definition:
ipv4-address-helper.h:194
ns3::Ipv4AddressHelper::m_shift
uint32_t m_shift
shift, equivalent to the number of bits in the hostpart
Definition:
ipv4-address-helper.h:195
ns3::Ipv4AddressHelper::NewAddress
Ipv4Address NewAddress(void)
Increment the IP address counter used to allocate IP addresses.
Definition:
ipv4-address-helper.cc:101
ns3::Ipv4AddressHelper::Ipv4AddressHelper
Ipv4AddressHelper()
Construct a helper class to make life easier while doing simple IPv4 address assignment in scripts...
Definition:
ipv4-address-helper.cc:36
ns3::NetDeviceContainer
holds a vector of ns3::NetDevice pointers
Definition:
net-device-container.h:41
ns3::Ipv4AddressHelper::m_network
uint32_t m_network
network address
Definition:
ipv4-address-helper.h:191
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Ipv4AddressHelper::NumAddressBits
uint32_t NumAddressBits(uint32_t maskbits) const
Returns the number of address bits (hostpart) for a given netmask.
Definition:
ipv4-address-helper.cc:181
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition:
ipv4-address.h:40
ns3::Ipv4AddressHelper::Assign
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Definition:
ipv4-address-helper.cc:134
ns3::Ipv4AddressHelper::NewNetwork
Ipv4Address NewNetwork(void)
Increment the network number and reset the IP address counter to the base value provided in the SetBa...
Definition:
ipv4-address-helper.cc:125
ns3::Ipv4AddressHelper::m_address
uint32_t m_address
address
Definition:
ipv4-address-helper.h:193
ns3::Ipv4AddressHelper
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Definition:
ipv4-address-helper.h:47
ns3::Ipv4AddressHelper::SetBase
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Definition:
ipv4-address-helper.cc:63
Generated on Wed Nov 7 2018 10:01:53 for ns-3 by
1.8.14