mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-27 01:38:37 -05:00
34 lines
896 B
C
34 lines
896 B
C
|
/*
|
||
|
* Qualcomm Atheros OUI and vendor specific assignments
|
||
|
* Copyright (c) 2014, Qualcomm Atheros, Inc.
|
||
|
*
|
||
|
* This software may be distributed under the terms of the BSD license.
|
||
|
* See README for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef QCA_VENDOR_H
|
||
|
#define QCA_VENDOR_H
|
||
|
|
||
|
/*
|
||
|
* This file is a registry of identifier assignments from the Qualcomm Atheros
|
||
|
* OUI 00:13:74 for purposes other than MAC address assignment. New identifiers
|
||
|
* can be assigned through normal review process for changes to the upstream
|
||
|
* hostap.git repository.
|
||
|
*/
|
||
|
|
||
|
#define OUI_QCA 0x001374
|
||
|
|
||
|
/**
|
||
|
* enum qca_nl80211_vendor_subcmds - QCA nl80211 vendor command identifiers
|
||
|
*
|
||
|
* @QCA_NL80211_VENDOR_SUBCMD_UNSPEC: Reserved value 0
|
||
|
*
|
||
|
* @QCA_NL80211_VENDOR_SUBCMD_TEST: Test command/event
|
||
|
*/
|
||
|
enum qca_nl80211_vendor_subcmds {
|
||
|
QCA_NL80211_VENDOR_SUBCMD_UNSPEC = 0,
|
||
|
QCA_NL80211_VENDOR_SUBCMD_TEST = 1,
|
||
|
};
|
||
|
|
||
|
#endif /* QCA_VENDOR_H */
|