This file is indexed.

/usr/include/ns3/mesh-information-element.h is in libns3-dev 3.13+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2010 Dean Armstrong
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Dean Armstrong <deanarm@gmail.com>
 */

#ifndef MESH_INFORMATION_ELEMENT_H
#define MESH_INFORMATION_ELEMENT_H

#include "ns3/wifi-information-element.h"

namespace ns3 {

#define IE11S_LINK_METRIC_REPORT               ((WifiInformationElementId)20)
#define IE11S_CONGESTION_NOTIFICATION          ((WifiInformationElementId)21)
#define IE11S_SUPP_MBSS_REG_CLASSES_CHANNELS   ((WifiInformationElementId)23)
#define IE11S_MESH_CHANNEL_SWITCH_ANNOUNCEMENT ((WifiInformationElementId)24)
#define IE11S_MESH_TIM                         ((WifiInformationElementId)25)
#define IE11S_AWAKE_WINDOW                     ((WifiInformationElementId)26)
#define IE11S_BEACON_TIMING                    ((WifiInformationElementId)27)
#define IE11S_MCCAOP_SETUP_REQUEST             ((WifiInformationElementId)28)
#define IE11S_MCCAOP_SETUP_REPLY               ((WifiInformationElementId)29)
#define IE11S_MCCAOP_ADVERTISEMENT             ((WifiInformationElementId)30)
#define IE11S_MCCAOP_RESERVATION_TEARDOWN      ((WifiInformationElementId)31)
#define IE11S_PORTAL_ANNOUNCEMENT              ((WifiInformationElementId)32)
#define IE11S_PROXY_UPDATE                     ((WifiInformationElementId)37)
#define IE11S_PROXY_UPDATE_CONFIRMATION        ((WifiInformationElementId)38)
#define IE11S_ABBREVIATED_HANDSHAKE            ((WifiInformationElementId)39)
/* begin of open80211s-compatible IDs */
#define IE11S_MESH_CONFIGURATION               ((WifiInformationElementId)51)
#define IE11S_MESH_ID                          ((WifiInformationElementId)52)
#define IE11S_PEERING_MANAGEMENT               ((WifiInformationElementId)55)
/* end of open80211s-compatible IDs */
#define IE11S_RANN                             ((WifiInformationElementId)67)
/* begin of open80211s-compatible IDs */
#define IE11S_PREQ                             ((WifiInformationElementId)68)
#define IE11S_PREP                             ((WifiInformationElementId)69)
#define IE11S_PERR                             ((WifiInformationElementId)70)
/* end of open80211s-compatible IDs */
#define IE11S_MESH_PEERING_PROTOCOL_VERSION    ((WifiInformationElementId)74)

}

#endif /* MESH_INFORMATION_ELEMENT_H */