author | Peter D. Barnes, Jr. <barnes26@llnl.gov> |
Wed, 05 Mar 2014 17:06:59 -0800 | |
changeset 10652 | dc18deba4502 |
parent 10410 | 4d4eb8097fa3 |
child 10968 | 2d29fee2b7b8 |
permissions | -rw-r--r-- |
7385
10beb0e53130
standardize emacs c++ mode comments
Vedran Miletić <rivanvx@gmail.com>
parents:
7141
diff
changeset
|
1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
4408 | 2 |
/* |
3 |
* Copyright (c) 2009 MIRKO BANCHI |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
6 |
* it under the terms of the GNU General Public License version 2 as |
4408 | 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: Mirko Banchi <mk.banchi@gmail.com> |
|
19 |
*/ |
|
20 |
#include "amsdu-subframe-header.h" |
|
21 |
#include "ns3/address-utils.h" |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
22 |
#include "ns3/log.h" |
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
23 |
|
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
24 |
NS_LOG_COMPONENT_DEFINE ("AmsduSubframeHeader"); |
4408 | 25 |
|
26 |
namespace ns3 { |
|
27 |
||
10652
dc18deba4502
[doxygen] Revert r10410, r10411, r10412
Peter D. Barnes, Jr. <barnes26@llnl.gov>
parents:
10410
diff
changeset
|
28 |
NS_OBJECT_ENSURE_REGISTERED (AmsduSubframeHeader); |
4408 | 29 |
|
30 |
TypeId |
|
31 |
AmsduSubframeHeader::GetTypeId () |
|
32 |
{ |
|
33 |
static TypeId tid = TypeId ("ns3::AmsduSubframeHeader") |
|
34 |
.SetParent<Header> () |
|
35 |
.AddConstructor<AmsduSubframeHeader> () |
|
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
36 |
; |
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
37 |
return tid; |
4408 | 38 |
} |
39 |
||
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
40 |
TypeId |
4408 | 41 |
AmsduSubframeHeader::GetInstanceTypeId (void) const |
42 |
{ |
|
43 |
return GetTypeId (); |
|
44 |
} |
|
45 |
||
46 |
AmsduSubframeHeader::AmsduSubframeHeader () |
|
47 |
: m_length (0) |
|
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
48 |
{ |
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
49 |
NS_LOG_FUNCTION (this); |
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
50 |
} |
4408 | 51 |
|
52 |
AmsduSubframeHeader::~AmsduSubframeHeader () |
|
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
53 |
{ |
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
54 |
NS_LOG_FUNCTION (this); |
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
55 |
} |
4408 | 56 |
|
57 |
uint32_t |
|
58 |
AmsduSubframeHeader::GetSerializedSize () const |
|
59 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
60 |
NS_LOG_FUNCTION (this); |
4408 | 61 |
return (6 + 6 + 2); |
62 |
} |
|
63 |
||
64 |
void |
|
65 |
AmsduSubframeHeader::Serialize (Buffer::Iterator i) const |
|
66 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
67 |
NS_LOG_FUNCTION (this << &i); |
4408 | 68 |
WriteTo (i, m_da); |
69 |
WriteTo (i, m_sa); |
|
9237
db83a668984c
Bug 1585 - Length field of A-MSDU subframe header endianness
Daniel Lertpratchya <nikkipui@gmail.com>
parents:
7386
diff
changeset
|
70 |
i.WriteHtonU16 (m_length); |
4408 | 71 |
} |
72 |
||
73 |
uint32_t |
|
74 |
AmsduSubframeHeader::Deserialize (Buffer::Iterator start) |
|
75 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
76 |
NS_LOG_FUNCTION (this << &start); |
4408 | 77 |
Buffer::Iterator i = start; |
78 |
ReadFrom (i, m_da); |
|
79 |
ReadFrom (i, m_sa); |
|
9237
db83a668984c
Bug 1585 - Length field of A-MSDU subframe header endianness
Daniel Lertpratchya <nikkipui@gmail.com>
parents:
7386
diff
changeset
|
80 |
m_length = i.ReadNtohU16 (); |
4408 | 81 |
return i.GetDistanceFrom (start); |
82 |
} |
|
83 |
||
84 |
void |
|
85 |
AmsduSubframeHeader::Print (std::ostream &os) const |
|
86 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
87 |
NS_LOG_FUNCTION (this << &os); |
4408 | 88 |
os << "DA = " << m_da << ", SA = " << m_sa << ", length = " << m_length; |
89 |
} |
|
90 |
||
91 |
void |
|
92 |
AmsduSubframeHeader::SetDestinationAddr (Mac48Address to) |
|
93 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
94 |
NS_LOG_FUNCTION (this << to); |
4408 | 95 |
m_da = to; |
96 |
} |
|
97 |
||
98 |
void |
|
99 |
AmsduSubframeHeader::SetSourceAddr (Mac48Address from) |
|
100 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
101 |
NS_LOG_FUNCTION (this << from); |
4408 | 102 |
m_sa = from; |
103 |
} |
|
104 |
||
105 |
void |
|
106 |
AmsduSubframeHeader::SetLength (uint16_t length) |
|
107 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
108 |
NS_LOG_FUNCTION (this << length); |
4408 | 109 |
m_length = length; |
110 |
} |
|
111 |
||
112 |
Mac48Address |
|
113 |
AmsduSubframeHeader::GetDestinationAddr (void) const |
|
114 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
115 |
NS_LOG_FUNCTION (this); |
4408 | 116 |
return m_da; |
117 |
} |
|
118 |
||
119 |
Mac48Address |
|
120 |
AmsduSubframeHeader::GetSourceAddr (void) const |
|
121 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
122 |
NS_LOG_FUNCTION (this); |
4408 | 123 |
return m_sa; |
124 |
} |
|
7141
072fb225b714
run check-style.py on src/wifi
Nicola Baldo <nicola@baldo.biz>
parents:
6852
diff
changeset
|
125 |
|
4408 | 126 |
uint16_t |
127 |
AmsduSubframeHeader::GetLength (void) const |
|
128 |
{ |
|
9705
43fa2408aa05
Partially clean up function logging of wifi module.
Edvin Močibob <edvin.mocibob@gmail.com>
parents:
9237
diff
changeset
|
129 |
NS_LOG_FUNCTION (this); |
4408 | 130 |
return m_length; |
131 |
} |
|
132 |
||
7386
2310ed220a61
standardize ns-3 namespace declaration format
Vedran Miletić <rivanvx@gmail.com>
parents:
7385
diff
changeset
|
133 |
} // namespace ns3 |