blob: 888d01afac6567ecb5ffd0bf0bd295434eb29bc9 [file] [log] [blame]
mukesh agrawal7a4e4002011-09-06 11:26:05 -07001// Copyright (c) 2011 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
5#ifndef SHILL_IEEE80211_H
6#define SHILL_IEEE80211_H
7
8namespace shill {
9
10namespace IEEE_80211 {
Thieu Le1df7f4e2012-02-10 15:21:45 -080011const uint8_t kElemIdErp = 42;
12const uint8_t kElemIdHTCap = 45;
13const uint8_t kElemIdHTInfo = 61;
14
mukesh agrawal7a4e4002011-09-06 11:26:05 -070015const unsigned int kMaxSSIDLen = 32;
16
17const unsigned int kWEP40AsciiLen = 5;
18const unsigned int kWEP40HexLen = 10;
19const unsigned int kWEP104AsciiLen = 13;
20const unsigned int kWEP104HexLen = 26;
mukesh agrawal8ede0522011-10-03 14:57:44 -070021
22const unsigned int kWPAAsciiMinLen = 8;
23const unsigned int kWPAAsciiMaxLen = 63;
24const unsigned int kWPAHexLen = 64;
mukesh agrawal7a4e4002011-09-06 11:26:05 -070025};
26
27} // namespace shill
28
29#endif // SHILL_IEEE_80211_H