ie: Move ieee_oui to toplevel

This commit is contained in:
Denis Kenzior 2015-02-03 20:10:15 -06:00
parent 5db26948f6
commit 7f5bb70422
1 changed files with 2 additions and 4 deletions

View File

@ -30,6 +30,8 @@
#include "ie.h" #include "ie.h"
static const uint8_t ieee_oui[3] = { 0x00, 0x0f, 0xac };
void ie_tlv_iter_init(struct ie_tlv_iter *iter, const unsigned char *tlv, void ie_tlv_iter_init(struct ie_tlv_iter *iter, const unsigned char *tlv,
unsigned int len) unsigned int len)
{ {
@ -184,8 +186,6 @@ void ie_tlv_builder_finalize(struct ie_tlv_builder *builder,
static bool ie_parse_cipher_suite(const uint8_t *data, static bool ie_parse_cipher_suite(const uint8_t *data,
enum ie_rsn_cipher_suite *out) enum ie_rsn_cipher_suite *out)
{ {
static const uint8_t ieee_oui[3] = { 0x00, 0x0f, 0xac };
/* /*
* Compare the OUI to the ones we know. OUI Format is found in * Compare the OUI to the ones we know. OUI Format is found in
* Figure 8-187 of 802.11 * Figure 8-187 of 802.11
@ -226,8 +226,6 @@ static bool ie_parse_cipher_suite(const uint8_t *data,
static bool ie_parse_akm_suite(const uint8_t *data, static bool ie_parse_akm_suite(const uint8_t *data,
enum ie_rsn_akm_suite *out) enum ie_rsn_akm_suite *out)
{ {
static const uint8_t ieee_oui[3] = { 0x00, 0x0f, 0xac };
/* /*
* Compare the OUI to the ones we know. OUI Format is found in * Compare the OUI to the ones we know. OUI Format is found in
* Figure 8-187 of 802.11 * Figure 8-187 of 802.11