EMANE  1.0.1
phytypes.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 - DRS CenGen, LLC, Columbia, Maryland
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * * Neither the name of DRS CenGen, LLC nor the names of its
16  * contributors may be used to endorse or promote products derived
17  * from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef EMANEPHYTYPES_HEADER_
34 #define EMANEPHYTYPES_HEADER_
35 
36 #include "emane/types.h"
37 
38 namespace EMANE
39 {
40  /*
41  * Resevered Phy Type Id Range (0,32767]
42  *.
43  * Local Phy Type Id Range [32768,65535)
44  */
45 
46  /*
47  * Bypass/sample Phy Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2008.10.02
48  */
50 
51  /*
52  * Low Fidelity 802.11 Phy Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2008.09.22
53  *
54  * deprecated, use 802_11_ABG
55  * const RegistrationId REGISTERED_EMANE_PHY_LEGACY_802_11 = 0x0002;
56  */
57 
58  /*
59  * High Fidelity 802.11 Phy Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2008.09.22
60  *
61  * deprecated, use universal phy
62  * const RegistrationId REGISTERED_EMANE_PHY_IEEE_802_11_ABG = 0x0003;
63  *
64  */
65 
66  /*
67  * RF Pipe Phy Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2008.09.22
68  *
69  * deprecated, use universal phy
70  * const RegistrationId REGISTERED_EMANE_PHY_RF_PIPE = 0x0004;
71  *
72  */
73 
74  /*
75  * Comm Effect Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2010.05.04
76  */
78 
79  /*
80  * Universal Type. Contrib. DRS CenGen, LLC<labs at cengen dot com> Reg. 2010.08.24
81  *
82  * deprecated, use framework phy
83  * const RegistrationId REGISTERED_EMANE_PHY_UNIVERSAL = 0x0006;
84  */
85 
86 
87  /*
88  * Framework Type. Contrib. Adjacent Link LLC <labs at adjacentlink dot com> Reg. 2013.12.01
89  */
91 
92 }
93 
94 
95 #endif //EMANEPHYTYPES_HEADER_
std::uint16_t RegistrationId
Definition: types.h:59
const RegistrationId REGISTERED_EMANE_PHY_COMM_EFFECT
Definition: phytypes.h:77
const RegistrationId REGISTERED_EMANE_PHY_FRAMEWORK
Definition: phytypes.h:90
const RegistrationId REGISTERED_EMANE_PHY_BYPASS
Definition: phytypes.h:49
Definition: agent.h:43