A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
mac16-address.h
Go to the documentation of this file.
1
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2007 INRIA
4
* Copyright (c) 2011 The Boeing Company
5
*
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License version 2 as
8
* published by the Free Software Foundation;
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
*
19
*/
20
#ifndef MAC16_ADDRESS_H
21
#define MAC16_ADDRESS_H
22
23
#include <stdint.h>
24
#include <ostream>
25
#include "ns3/attribute.h"
26
#include "ns3/attribute-helper.h"
27
#include "
ipv4-address.h
"
28
#include "
ipv6-address.h
"
29
30
namespace
ns3 {
31
32
class
Address;
33
41
class
Mac16Address
42
{
43
public
:
44
Mac16Address
();
49
Mac16Address
(
const
char
*str);
50
56
void
CopyFrom
(
const
uint8_t buffer[2]);
62
void
CopyTo
(uint8_t buffer[2])
const
;
68
operator
Address
()
const
;
77
static
Mac16Address
ConvertFrom
(
const
Address
&
address
);
82
static
bool
IsMatchingType
(
const
Address
&address);
87
static
Mac16Address
Allocate
(
void
);
88
89
private
:
95
Address
ConvertTo
(
void
)
const
;
96
101
static
uint8_t
GetType
(
void
);
102
110
friend
bool
operator ==
(
const
Mac16Address
&a,
const
Mac16Address
&b);
111
119
friend
bool
operator !=
(
const
Mac16Address
&a,
const
Mac16Address
&b);
120
128
friend
bool
operator <
(
const
Mac16Address
&a,
const
Mac16Address
&b);
129
137
friend
std::ostream&
operator<<
(std::ostream& os,
const
Mac16Address
& address);
138
146
friend
std::istream&
operator>>
(std::istream& is,
Mac16Address
& address);
147
148
uint8_t
m_address
[2];
149
};
150
151
ATTRIBUTE_HELPER_HEADER
(
Mac16Address
);
152
153
inline
bool
operator ==
(
const
Mac16Address
&a,
const
Mac16Address
&b)
154
{
155
return
memcmp (a.
m_address
, b.
m_address
, 2) == 0;
156
}
157
inline
bool
operator !=
(
const
Mac16Address
&a,
const
Mac16Address
&b)
158
{
159
return
memcmp (a.
m_address
, b.
m_address
, 2) != 0;
160
}
161
inline
bool
operator <
(
const
Mac16Address
&a,
const
Mac16Address
&b)
162
{
163
return
memcmp (a.
m_address
, b.
m_address
, 2) < 0;
164
}
165
166
std::ostream&
operator<<
(std::ostream& os,
const
Mac16Address &
address
);
167
std::istream&
operator>>
(std::istream& is, Mac16Address &
address
);
168
169
}
// namespace ns3
170
171
#endif
/* MAC16_ADDRESS_H */
ns3::Mac16Address::operator>>
friend std::istream & operator>>(std::istream &is, Mac16Address &address)
Stream extraction operator.
Definition:
mac16-address.cc:177
ns3::operator>>
std::istream & operator>>(std::istream &is, Angles &a)
initialize a struct Angles from input
Definition:
angles.cc:48
ns3::Mac16Address::m_address
uint8_t m_address[2]
address value
Definition:
mac16-address.h:148
ns3::Mac16Address::ConvertFrom
static Mac16Address ConvertFrom(const Address &address)
Definition:
mac16-address.cc:124
ns3::Mac16Address::CopyFrom
void CopyFrom(const uint8_t buffer[2])
Definition:
mac16-address.cc:99
ns3::ATTRIBUTE_HELPER_HEADER
ATTRIBUTE_HELPER_HEADER(BleAccessAddress)
ns3::Address
a polymophic address class
Definition:
address.h:90
ns3::Mac16Address::GetType
static uint8_t GetType(void)
Return the Type of address.
Definition:
mac16-address.cc:152
ns3::Mac16Address::ConvertTo
Address ConvertTo(void) const
Definition:
mac16-address.cc:133
ns3::Mac16Address::operator<
friend bool operator<(const Mac16Address &a, const Mac16Address &b)
Less than operator.
Definition:
mac16-address.h:161
ns3::Mac16Address::CopyTo
void CopyTo(uint8_t buffer[2]) const
Definition:
mac16-address.cc:105
ns3::operator<<
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition:
angles.cc:42
ns3::Mac16Address::operator!=
friend bool operator!=(const Mac16Address &a, const Mac16Address &b)
Not equal to operator.
Definition:
mac16-address.h:157
ns3::Mac16Address::operator<<
friend std::ostream & operator<<(std::ostream &os, const Mac16Address &address)
Stream insertion operator.
Definition:
mac16-address.cc:159
ipv4-address.h
ns3::operator==
bool operator==(const BleAccessAddress &a, const BleAccessAddress &b)
Definition:
ble-access-address.h:160
ns3::operator!=
bool operator!=(const BleAccessAddress &a, const BleAccessAddress &b)
Definition:
ble-access-address.h:164
ns3::Mac16Address
This class can contain 16 bit addresses.
Definition:
mac16-address.h:41
ns3::operator<
bool operator<(const BleAccessAddress &a, const BleAccessAddress &b)
Definition:
ble-access-address.h:168
ns3::Mac16Address::operator==
friend bool operator==(const Mac16Address &a, const Mac16Address &b)
Equal to operator.
Definition:
mac16-address.h:153
ns3::Mac16Address::Mac16Address
Mac16Address()
Definition:
mac16-address.cc:60
ipv6-address.h
first.address
tuple address
Definition:
first.py:37
ns3::Mac16Address::IsMatchingType
static bool IsMatchingType(const Address &address)
Definition:
mac16-address.cc:112
ns3::Mac16Address::Allocate
static Mac16Address Allocate(void)
Allocate a new Mac16Address.
Definition:
mac16-address.cc:140
src
network
utils
mac16-address.h
Generated on Wed Jul 6 2016 17:11:37 for ns-3 by
1.8.6