Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Wade Guthrie | f162f8b | 2013-02-27 14:13:55 -0800 | [diff] [blame] | 5 | #ifndef SHILL_NL80211_ATTRIBUTE_H_ |
| 6 | #define SHILL_NL80211_ATTRIBUTE_H_ |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 7 | |
Wade Guthrie | 8343f7f | 2012-12-04 13:52:32 -0800 | [diff] [blame] | 8 | #include <netlink/attr.h> |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 9 | |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 10 | #include <base/basictypes.h> |
| 11 | |
Wade Guthrie | f162f8b | 2013-02-27 14:13:55 -0800 | [diff] [blame] | 12 | #include "shill/netlink_attribute.h" |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 13 | |
| 14 | struct nlattr; |
| 15 | |
| 16 | namespace shill { |
| 17 | |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 18 | // U8. |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 19 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 20 | class Nl80211AttributeKeyIdx : public NetlinkU8Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 21 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 22 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 23 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 24 | Nl80211AttributeKeyIdx() : NetlinkU8Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 25 | |
| 26 | private: |
| 27 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeKeyIdx); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 28 | }; |
| 29 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 30 | class Nl80211AttributeMaxMatchSets : public NetlinkU8Attribute { |
| 31 | public: |
| 32 | static const int kName; |
| 33 | static const char kNameString[]; |
| 34 | Nl80211AttributeMaxMatchSets() : NetlinkU8Attribute(kName, kNameString) {} |
| 35 | |
| 36 | private: |
| 37 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxMatchSets); |
| 38 | }; |
| 39 | |
| 40 | class Nl80211AttributeMaxNumPmkids : public NetlinkU8Attribute { |
| 41 | public: |
| 42 | static const int kName; |
| 43 | static const char kNameString[]; |
| 44 | Nl80211AttributeMaxNumPmkids() : NetlinkU8Attribute(kName, kNameString) {} |
| 45 | |
| 46 | private: |
| 47 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxNumPmkids); |
| 48 | }; |
| 49 | |
| 50 | class Nl80211AttributeMaxNumScanSsids : public NetlinkU8Attribute { |
| 51 | public: |
| 52 | static const int kName; |
| 53 | static const char kNameString[]; |
| 54 | Nl80211AttributeMaxNumScanSsids() : NetlinkU8Attribute(kName, kNameString) {} |
| 55 | |
| 56 | private: |
| 57 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxNumScanSsids); |
| 58 | }; |
| 59 | |
| 60 | class Nl80211AttributeMaxNumSchedScanSsids : public NetlinkU8Attribute { |
| 61 | public: |
| 62 | static const int kName; |
| 63 | static const char kNameString[]; |
| 64 | Nl80211AttributeMaxNumSchedScanSsids() |
| 65 | : NetlinkU8Attribute(kName, kNameString) {} |
| 66 | |
| 67 | private: |
| 68 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxNumSchedScanSsids); |
| 69 | }; |
| 70 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 71 | class Nl80211AttributeRegType : public NetlinkU8Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 72 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 73 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 74 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 75 | Nl80211AttributeRegType() : NetlinkU8Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 76 | |
| 77 | private: |
| 78 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeRegType); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 79 | }; |
| 80 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 81 | class Nl80211AttributeWiphyCoverageClass : public NetlinkU8Attribute { |
| 82 | public: |
| 83 | static const int kName; |
| 84 | static const char kNameString[]; |
| 85 | Nl80211AttributeWiphyCoverageClass() |
| 86 | : NetlinkU8Attribute(kName, kNameString) {} |
| 87 | |
| 88 | private: |
| 89 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyCoverageClass); |
| 90 | }; |
| 91 | |
| 92 | class Nl80211AttributeWiphyRetryLong : public NetlinkU8Attribute { |
| 93 | public: |
| 94 | static const int kName; |
| 95 | static const char kNameString[]; |
| 96 | Nl80211AttributeWiphyRetryLong() : NetlinkU8Attribute(kName, kNameString) {} |
| 97 | |
| 98 | private: |
| 99 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyRetryLong); |
| 100 | }; |
| 101 | |
| 102 | class Nl80211AttributeWiphyRetryShort : public NetlinkU8Attribute { |
| 103 | public: |
| 104 | static const int kName; |
| 105 | static const char kNameString[]; |
| 106 | Nl80211AttributeWiphyRetryShort() : NetlinkU8Attribute(kName, kNameString) {} |
| 107 | |
| 108 | private: |
| 109 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyRetryShort); |
| 110 | }; |
| 111 | |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 112 | // U16. |
| 113 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 114 | class Nl80211AttributeMaxScanIeLen : public NetlinkU16Attribute { |
| 115 | public: |
| 116 | static const int kName; |
| 117 | static const char kNameString[]; |
| 118 | Nl80211AttributeMaxScanIeLen() : NetlinkU16Attribute(kName, kNameString) {} |
| 119 | |
| 120 | private: |
| 121 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxScanIeLen); |
| 122 | }; |
| 123 | |
| 124 | class Nl80211AttributeMaxSchedScanIeLen : public NetlinkU16Attribute { |
| 125 | public: |
| 126 | static const int kName; |
| 127 | static const char kNameString[]; |
| 128 | Nl80211AttributeMaxSchedScanIeLen() |
| 129 | : NetlinkU16Attribute(kName, kNameString) {} |
| 130 | |
| 131 | private: |
| 132 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxSchedScanIeLen); |
| 133 | }; |
| 134 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 135 | class Nl80211AttributeReasonCode : public NetlinkU16Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 136 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 137 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 138 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 139 | Nl80211AttributeReasonCode() : NetlinkU16Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 140 | |
| 141 | private: |
| 142 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeReasonCode); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 143 | }; |
| 144 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 145 | class Nl80211AttributeStatusCode : public NetlinkU16Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 146 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 147 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 148 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 149 | Nl80211AttributeStatusCode() : NetlinkU16Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 150 | |
| 151 | private: |
| 152 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeStatusCode); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | // U32. |
| 156 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 157 | class Nl80211AttributeDuration : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 158 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 159 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 160 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 161 | Nl80211AttributeDuration() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 162 | |
| 163 | private: |
| 164 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeDuration); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 165 | }; |
| 166 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 167 | class Nl80211AttributeDeviceApSme : public NetlinkU32Attribute { |
| 168 | public: |
| 169 | static const int kName; |
| 170 | static const char kNameString[]; |
| 171 | Nl80211AttributeDeviceApSme() : NetlinkU32Attribute(kName, kNameString) {} |
| 172 | |
| 173 | private: |
| 174 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeDeviceApSme); |
| 175 | }; |
| 176 | |
| 177 | class Nl80211AttributeFeatureFlags : public NetlinkU32Attribute { |
| 178 | public: |
| 179 | static const int kName; |
| 180 | static const char kNameString[]; |
| 181 | Nl80211AttributeFeatureFlags() : NetlinkU32Attribute(kName, kNameString) {} |
| 182 | |
| 183 | private: |
| 184 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeFeatureFlags); |
| 185 | }; |
| 186 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 187 | class Nl80211AttributeGeneration : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 188 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 189 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 190 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 191 | Nl80211AttributeGeneration() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 192 | |
| 193 | private: |
| 194 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeGeneration); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 195 | }; |
| 196 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 197 | class Nl80211AttributeIfindex : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 198 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 199 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 200 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 201 | Nl80211AttributeIfindex() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 202 | |
| 203 | private: |
| 204 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeIfindex); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 205 | }; |
| 206 | |
Paul Stewart | 2ddf2c6 | 2013-04-16 09:47:34 -0700 | [diff] [blame] | 207 | class Nl80211AttributeIftype : public NetlinkU32Attribute { |
| 208 | public: |
| 209 | static const int kName; |
| 210 | static const char kNameString[]; |
| 211 | Nl80211AttributeIftype() : NetlinkU32Attribute(kName, kNameString) {} |
| 212 | |
| 213 | private: |
| 214 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeIftype); |
| 215 | }; |
| 216 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 217 | class Nl80211AttributeKeyType : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 218 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 219 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 220 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 221 | Nl80211AttributeKeyType() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 222 | |
| 223 | private: |
| 224 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeKeyType); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 225 | }; |
| 226 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 227 | class Nl80211AttributeMaxRemainOnChannelDuration : public NetlinkU32Attribute { |
| 228 | public: |
| 229 | static const int kName; |
| 230 | static const char kNameString[]; |
| 231 | Nl80211AttributeMaxRemainOnChannelDuration() |
| 232 | : NetlinkU32Attribute(kName, kNameString) {} |
| 233 | |
| 234 | private: |
| 235 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMaxRemainOnChannelDuration); |
| 236 | }; |
| 237 | |
| 238 | class Nl80211AttributeProbeRespOffload : public NetlinkU32Attribute { |
| 239 | public: |
| 240 | static const int kName; |
| 241 | static const char kNameString[]; |
| 242 | Nl80211AttributeProbeRespOffload() |
| 243 | : NetlinkU32Attribute(kName, kNameString) {} |
| 244 | |
| 245 | private: |
| 246 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeProbeRespOffload); |
| 247 | }; |
| 248 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 249 | class Nl80211AttributeRegInitiator : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 250 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 251 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 252 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 253 | Nl80211AttributeRegInitiator() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 254 | |
| 255 | private: |
| 256 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeRegInitiator); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 257 | }; |
| 258 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 259 | class Nl80211AttributeWiphy : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 260 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 261 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 262 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 263 | Nl80211AttributeWiphy() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 264 | |
| 265 | private: |
| 266 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphy); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 267 | }; |
| 268 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 269 | class Nl80211AttributeWiphyAntennaAvailRx : public NetlinkU32Attribute { |
| 270 | public: |
| 271 | static const int kName; |
| 272 | static const char kNameString[]; |
| 273 | Nl80211AttributeWiphyAntennaAvailRx() |
| 274 | : NetlinkU32Attribute(kName, kNameString) {} |
| 275 | |
| 276 | private: |
| 277 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyAntennaAvailRx); |
| 278 | }; |
| 279 | |
| 280 | class Nl80211AttributeWiphyAntennaAvailTx : public NetlinkU32Attribute { |
| 281 | public: |
| 282 | static const int kName; |
| 283 | static const char kNameString[]; |
| 284 | Nl80211AttributeWiphyAntennaAvailTx() |
| 285 | : NetlinkU32Attribute(kName, kNameString) {} |
| 286 | |
| 287 | private: |
| 288 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyAntennaAvailTx); |
| 289 | }; |
| 290 | |
| 291 | class Nl80211AttributeWiphyAntennaRx : public NetlinkU32Attribute { |
| 292 | public: |
| 293 | static const int kName; |
| 294 | static const char kNameString[]; |
| 295 | Nl80211AttributeWiphyAntennaRx() : NetlinkU32Attribute(kName, kNameString) {} |
| 296 | |
| 297 | private: |
| 298 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyAntennaRx); |
| 299 | }; |
| 300 | |
| 301 | class Nl80211AttributeWiphyAntennaTx : public NetlinkU32Attribute { |
| 302 | public: |
| 303 | static const int kName; |
| 304 | static const char kNameString[]; |
| 305 | Nl80211AttributeWiphyAntennaTx() : NetlinkU32Attribute(kName, kNameString) {} |
| 306 | |
| 307 | private: |
| 308 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyAntennaTx); |
| 309 | }; |
| 310 | |
| 311 | class Nl80211AttributeWiphyFragThreshold : public NetlinkU32Attribute { |
| 312 | public: |
| 313 | static const int kName; |
| 314 | static const char kNameString[]; |
| 315 | Nl80211AttributeWiphyFragThreshold() |
| 316 | : NetlinkU32Attribute(kName, kNameString) {} |
| 317 | |
| 318 | private: |
| 319 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyFragThreshold); |
| 320 | }; |
| 321 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 322 | class Nl80211AttributeWiphyFreq : public NetlinkU32Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 323 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 324 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 325 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 326 | Nl80211AttributeWiphyFreq() : NetlinkU32Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 327 | |
| 328 | private: |
| 329 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyFreq); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 330 | }; |
| 331 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 332 | class Nl80211AttributeWiphyRtsThreshold : public NetlinkU32Attribute { |
| 333 | public: |
| 334 | static const int kName; |
| 335 | static const char kNameString[]; |
| 336 | Nl80211AttributeWiphyRtsThreshold() |
| 337 | : NetlinkU32Attribute(kName, kNameString) {} |
| 338 | |
| 339 | private: |
| 340 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyRtsThreshold); |
| 341 | }; |
| 342 | |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 343 | // U64. |
| 344 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 345 | class Nl80211AttributeCookie : public NetlinkU64Attribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 346 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 347 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 348 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 349 | Nl80211AttributeCookie() : NetlinkU64Attribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 350 | |
| 351 | private: |
| 352 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeCookie); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 353 | }; |
| 354 | |
| 355 | // Flag. |
| 356 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 357 | class Nl80211AttributeControlPortEthertype : public NetlinkFlagAttribute { |
| 358 | public: |
| 359 | static const int kName; |
| 360 | static const char kNameString[]; |
| 361 | Nl80211AttributeControlPortEthertype() |
| 362 | : NetlinkFlagAttribute(kName, kNameString) {} |
| 363 | |
| 364 | private: |
| 365 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeControlPortEthertype); |
| 366 | }; |
| 367 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 368 | class Nl80211AttributeDisconnectedByAp : public NetlinkFlagAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 369 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 370 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 371 | static const char kNameString[]; |
| 372 | Nl80211AttributeDisconnectedByAp() : |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 373 | NetlinkFlagAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 374 | |
| 375 | private: |
| 376 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeDisconnectedByAp); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 377 | }; |
| 378 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 379 | class Nl80211AttributeOffchannelTxOk : public NetlinkFlagAttribute { |
| 380 | public: |
| 381 | static const int kName; |
| 382 | static const char kNameString[]; |
| 383 | Nl80211AttributeOffchannelTxOk() |
| 384 | : NetlinkFlagAttribute(kName, kNameString) {} |
| 385 | |
| 386 | private: |
| 387 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeOffchannelTxOk); |
| 388 | }; |
| 389 | |
| 390 | class Nl80211AttributeRoamSupport : public NetlinkFlagAttribute { |
| 391 | public: |
| 392 | static const int kName; |
| 393 | static const char kNameString[]; |
| 394 | Nl80211AttributeRoamSupport() : NetlinkFlagAttribute(kName, kNameString) {} |
| 395 | |
| 396 | private: |
| 397 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeRoamSupport); |
| 398 | }; |
| 399 | |
| 400 | class Nl80211AttributeSupportApUapsd : public NetlinkFlagAttribute { |
| 401 | public: |
| 402 | static const int kName; |
| 403 | static const char kNameString[]; |
| 404 | Nl80211AttributeSupportApUapsd() |
| 405 | : NetlinkFlagAttribute(kName, kNameString) {} |
| 406 | |
| 407 | private: |
| 408 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeSupportApUapsd); |
| 409 | }; |
| 410 | |
| 411 | class Nl80211AttributeSupportIbssRsn : public NetlinkFlagAttribute { |
| 412 | public: |
| 413 | static const int kName; |
| 414 | static const char kNameString[]; |
| 415 | Nl80211AttributeSupportIbssRsn() |
| 416 | : NetlinkFlagAttribute(kName, kNameString) {} |
| 417 | |
| 418 | private: |
| 419 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeSupportIbssRsn); |
| 420 | }; |
| 421 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 422 | class Nl80211AttributeSupportMeshAuth : public NetlinkFlagAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 423 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 424 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 425 | static const char kNameString[]; |
| 426 | Nl80211AttributeSupportMeshAuth() : |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 427 | NetlinkFlagAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 428 | |
| 429 | private: |
| 430 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeSupportMeshAuth); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 431 | }; |
| 432 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 433 | class Nl80211AttributeTdlsExternalSetup : public NetlinkFlagAttribute { |
| 434 | public: |
| 435 | static const int kName; |
| 436 | static const char kNameString[]; |
| 437 | Nl80211AttributeTdlsExternalSetup() |
| 438 | : NetlinkFlagAttribute(kName, kNameString) {} |
| 439 | |
| 440 | private: |
| 441 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeTdlsExternalSetup); |
| 442 | }; |
| 443 | |
| 444 | class Nl80211AttributeTdlsSupport : public NetlinkFlagAttribute { |
| 445 | public: |
| 446 | static const int kName; |
| 447 | static const char kNameString[]; |
| 448 | Nl80211AttributeTdlsSupport() : NetlinkFlagAttribute(kName, kNameString) {} |
| 449 | |
| 450 | private: |
| 451 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeTdlsSupport); |
| 452 | }; |
| 453 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 454 | class Nl80211AttributeTimedOut : public NetlinkFlagAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 455 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 456 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 457 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 458 | Nl80211AttributeTimedOut() : NetlinkFlagAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 459 | |
| 460 | private: |
| 461 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeTimedOut); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 462 | }; |
| 463 | |
| 464 | // String. |
| 465 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 466 | class Nl80211AttributeRegAlpha2 : public NetlinkStringAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 467 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 468 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 469 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 470 | Nl80211AttributeRegAlpha2() : NetlinkStringAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 471 | |
| 472 | private: |
| 473 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeRegAlpha2); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 474 | }; |
| 475 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 476 | class Nl80211AttributeWiphyName : public NetlinkStringAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 477 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 478 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 479 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 480 | Nl80211AttributeWiphyName() : NetlinkStringAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 481 | |
| 482 | private: |
| 483 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyName); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 484 | }; |
| 485 | |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 486 | // Nested. |
| 487 | |
Wade Guthrie | f54872f | 2013-04-11 15:11:50 -0700 | [diff] [blame] | 488 | class Nl80211AttributeBss : public NetlinkNestedAttribute { |
| 489 | public: |
| 490 | static const int kName; |
| 491 | static const char kNameString[]; |
| 492 | // These are sorted alphabetically. |
| 493 | static const int kChallengeTextAttributeId; |
| 494 | static const int kChannelsAttributeId; |
| 495 | static const int kCountryInfoAttributeId; |
| 496 | static const int kDSParameterSetAttributeId; |
| 497 | static const int kErpAttributeId; |
| 498 | static const int kExtendedRatesAttributeId; |
| 499 | static const int kHtCapAttributeId; |
| 500 | static const int kHtInfoAttributeId; |
| 501 | static const int kPowerCapabilityAttributeId; |
| 502 | static const int kPowerConstraintAttributeId; |
| 503 | static const int kRequestAttributeId; |
| 504 | static const int kRsnAttributeId; |
| 505 | static const int kSsidAttributeId; |
| 506 | static const int kSupportedRatesAttributeId; |
| 507 | static const int kTcpReportAttributeId; |
| 508 | static const int kVendorSpecificAttributeId; |
| 509 | |
| 510 | Nl80211AttributeBss(); |
| 511 | |
| 512 | private: |
| 513 | static bool ParseInformationElements(AttributeList *attribute_list, |
| 514 | size_t id, |
| 515 | const std::string &attribute_name, |
| 516 | ByteString data); |
| 517 | |
| 518 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeBss); |
| 519 | }; |
| 520 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 521 | class Nl80211AttributeCqm : public NetlinkNestedAttribute { |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 522 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 523 | static const int kName; |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 524 | static const char kNameString[]; |
| 525 | Nl80211AttributeCqm(); |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 526 | |
| 527 | private: |
| 528 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeCqm); |
Wade Guthrie | d3dfd6c | 2013-02-28 17:40:36 -0800 | [diff] [blame] | 529 | }; |
| 530 | |
| 531 | class Nl80211AttributeScanFrequencies : public NetlinkNestedAttribute { |
| 532 | public: |
| 533 | static const int kName; |
| 534 | static const char kNameString[]; |
| 535 | explicit Nl80211AttributeScanFrequencies(); |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 536 | |
| 537 | private: |
| 538 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeScanFrequencies); |
Wade Guthrie | d3dfd6c | 2013-02-28 17:40:36 -0800 | [diff] [blame] | 539 | }; |
| 540 | |
| 541 | class Nl80211AttributeScanSsids : public NetlinkNestedAttribute { |
| 542 | public: |
| 543 | static const int kName; |
| 544 | static const char kNameString[]; |
| 545 | explicit Nl80211AttributeScanSsids(); |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 546 | |
| 547 | private: |
| 548 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeScanSsids); |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 549 | }; |
| 550 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 551 | class Nl80211AttributeStaInfo : public NetlinkNestedAttribute { |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 552 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 553 | static const int kName; |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 554 | static const char kNameString[]; |
Wade Guthrie | d3dfd6c | 2013-02-28 17:40:36 -0800 | [diff] [blame] | 555 | Nl80211AttributeStaInfo(); |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 556 | |
| 557 | private: |
| 558 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeStaInfo); |
repo sync | 12cca80 | 2012-12-19 17:34:22 -0800 | [diff] [blame] | 559 | }; |
| 560 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 561 | class Nl80211AttributeWiphyBands : public NetlinkNestedAttribute { |
| 562 | public: |
| 563 | static const int kName; |
| 564 | static const char kNameString[]; |
| 565 | Nl80211AttributeWiphyBands(); |
| 566 | |
| 567 | private: |
| 568 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeWiphyBands); |
| 569 | }; |
| 570 | |
| 571 | |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 572 | // Raw. |
| 573 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 574 | class Nl80211AttributeCipherSuites : public NetlinkRawAttribute { |
| 575 | public: |
| 576 | static const int kName; |
| 577 | static const char kNameString[]; |
| 578 | Nl80211AttributeCipherSuites() : NetlinkRawAttribute(kName, kNameString) {} |
| 579 | |
| 580 | private: |
| 581 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeCipherSuites); |
| 582 | }; |
| 583 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 584 | class Nl80211AttributeFrame : public NetlinkRawAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 585 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 586 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 587 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 588 | Nl80211AttributeFrame() : NetlinkRawAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 589 | |
| 590 | private: |
| 591 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeFrame); |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 592 | }; |
| 593 | |
Wade Guthrie | 1f355e8 | 2013-04-11 15:46:12 -0700 | [diff] [blame] | 594 | class Nl80211AttributeHtCapabilityMask : public NetlinkRawAttribute { |
| 595 | public: |
| 596 | static const int kName; |
| 597 | static const char kNameString[]; |
| 598 | Nl80211AttributeHtCapabilityMask() |
| 599 | : NetlinkRawAttribute(kName, kNameString) {} |
| 600 | |
| 601 | private: |
| 602 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeHtCapabilityMask); |
| 603 | }; |
| 604 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 605 | class Nl80211AttributeKeySeq : public NetlinkRawAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 606 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 607 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 608 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 609 | Nl80211AttributeKeySeq() : NetlinkRawAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 610 | |
| 611 | private: |
| 612 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeKeySeq); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 613 | }; |
| 614 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 615 | class Nl80211AttributeMac : public NetlinkRawAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 616 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 617 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 618 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 619 | Nl80211AttributeMac() : NetlinkRawAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 620 | |
| 621 | private: |
| 622 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeMac); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 623 | }; |
| 624 | |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 625 | class Nl80211AttributeRespIe : public NetlinkRawAttribute { |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 626 | public: |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 627 | static const int kName; |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 628 | static const char kNameString[]; |
Wade Guthrie | 68da97c | 2013-02-26 13:09:35 -0800 | [diff] [blame] | 629 | Nl80211AttributeRespIe() : NetlinkRawAttribute(kName, kNameString) {} |
Wade Guthrie | 89e6cb3 | 2013-03-07 08:03:45 -0800 | [diff] [blame] | 630 | |
| 631 | private: |
| 632 | DISALLOW_COPY_AND_ASSIGN(Nl80211AttributeRespIe); |
Wade Guthrie | 25cdb38 | 2012-12-04 14:04:05 -0800 | [diff] [blame] | 633 | }; |
| 634 | |
Wade Guthrie | 1619624 | 2012-11-20 15:53:52 -0800 | [diff] [blame] | 635 | } // namespace shill |
| 636 | |
Wade Guthrie | bb9fca2 | 2013-04-10 17:21:42 -0700 | [diff] [blame] | 637 | #endif // SHILL_NL80211_ATTRIBUTE_H_ |