|
1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
2 |
/* |
3 |
* Copyright (c) 2010 Dean Armstrong |
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: Dean Armstrong <deanarm@gmail.com> |
19 |
*/ |
20 |
|
21 |
#ifndef MESH_INFORMATION_ELEMENT_H |
22 |
#define MESH_INFORMATION_ELEMENT_H |
23 |
|
24 |
#include "ns3/wifi-information-element.h" |
25 |
|
26 |
namespace ns3 { |
27 |
|
28 |
#define IE11S_LINK_METRIC_REPORT ((WifiInformationElementId)115) |
29 |
#define IE11S_CONGESTION_NOTIFICATION ((WifiInformationElementId)116) |
30 |
#define IE11S_SUPP_MBSS_REG_CLASSES_CHANNELS ((WifiInformationElementId)23) |
31 |
#define IE11S_MESH_CHANNEL_SWITCH_ANNOUNCEMENT ((WifiInformationElementId)24) |
32 |
#define IE11S_MESH_TIM ((WifiInformationElementId)25) |
33 |
#define IE11S_AWAKE_WINDOW ((WifiInformationElementId)119) |
34 |
#define IE11S_BEACON_TIMING ((WifiInformationElementId)120) |
35 |
#define IE11S_MCCAOP_SETUP_REQUEST ((WifiInformationElementId)121) |
36 |
#define IE11S_MCCAOP_SETUP_REPLY ((WifiInformationElementId)122) |
37 |
#define IE11S_MCCAOP_ADVERTISEMENT ((WifiInformationElementId)123) |
38 |
#define IE11S_MCCAOP_RESERVATION_TEARDOWN ((WifiInformationElementId)31) |
39 |
#define IE11S_PORTAL_ANNOUNCEMENT ((WifiInformationElementId)32) |
40 |
#define IE11S_PROXY_UPDATE ((WifiInformationElementId)137) |
41 |
#define IE11S_PROXY_UPDATE_CONFIRMATION ((WifiInformationElementId)138) |
42 |
#define IE11S_ABBREVIATED_HANDSHAKE ((WifiInformationElementId)39) |
43 |
/* begin of open80211s-compatible IDs */ |
44 |
#define IE11S_MESH_CONFIGURATION ((WifiInformationElementId)113) |
45 |
#define IE11S_MESH_ID ((WifiInformationElementId)114) |
46 |
#define IE11S_PEERING_MANAGEMENT ((WifiInformationElementId)117) |
47 |
/* end of open80211s-compatible IDs */ |
48 |
#define IE11S_RANN ((WifiInformationElementId)126) |
49 |
/* begin of open80211s-compatible IDs */ |
50 |
#define IE11S_PREQ ((WifiInformationElementId)130) |
51 |
#define IE11S_PREP ((WifiInformationElementId)131) |
52 |
#define IE11S_PERR ((WifiInformationElementId)132) |
53 |
/* end of open80211s-compatible IDs */ |
54 |
#define IE11S_MESH_PEERING_PROTOCOL_VERSION ((WifiInformationElementId)74) |
55 |
|
56 |
} |
57 |
|
58 |
#endif /* MESH_INFORMATION_ELEMENT_H */ |