2016-03-13 01:44:42 +01:00
|
|
|
/*
|
|
|
|
This file is part of actube.
|
|
|
|
|
|
|
|
actube is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
libcapwap is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Definition of vendor IDs
|
|
|
|
*/
|
|
|
|
|
2018-02-25 00:58:59 +01:00
|
|
|
/**
|
|
|
|
* @defgroup CAPWAPVendors
|
|
|
|
* @{ */
|
|
|
|
|
2018-02-18 14:28:15 +01:00
|
|
|
#ifndef __CW_VENDORS_H
|
|
|
|
#define __CW_VENDORS_H
|
2016-03-13 01:44:42 +01:00
|
|
|
|
|
|
|
#define LW_VENDOR_ID_CISCO 4232704
|
|
|
|
|
|
|
|
#define CW_VENDOR_ID_FSF 11591
|
|
|
|
#define CW_VENDOR_ID_ZYXEL 890
|
|
|
|
#define CW_VENDOR_ID_CISCO LW_VENDOR_ID_CISCO
|
|
|
|
#define CW_VENDOR_ID_LANCOM 2356
|
|
|
|
#define CW_VENDOR_ID_FORTINET 12356
|
|
|
|
|
2018-02-25 00:58:59 +01:00
|
|
|
/** @} */
|
|
|
|
|
2016-03-13 01:44:42 +01:00
|
|
|
#endif
|