2014-08-14 11:43:21 +02:00
|
|
|
/*
|
|
|
|
This file is part of libcapwap.
|
|
|
|
|
|
|
|
libcapwap 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/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-03-16 21:41:33 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief cw_iananvendoridtostr
|
|
|
|
*/
|
2014-07-31 20:58:44 +02:00
|
|
|
|
|
|
|
#include "capwap.h"
|
|
|
|
|
2015-03-16 21:41:33 +01:00
|
|
|
/**
|
|
|
|
* Convert IANA vendor ID to string
|
|
|
|
* @param id the ID
|
|
|
|
* @return a pointer to the string
|
|
|
|
*
|
|
|
|
* Defines of only a view number of IDs. If the ID is unknown
|
|
|
|
* the string "Unknown" is returned.
|
|
|
|
*/
|
2015-03-29 01:55:06 +01:00
|
|
|
const char * lw_vendor_id_to_str(uint32_t vendor_id){
|
|
|
|
switch(vendor_id){
|
2014-08-14 11:43:21 +02:00
|
|
|
case CW_VENDOR_ID_ZYXEL:
|
2014-07-31 20:58:44 +02:00
|
|
|
return "ZyXEL Communications Corp.";
|
2014-08-14 11:43:21 +02:00
|
|
|
case CW_VENDOR_ID_FSF:
|
2014-08-02 09:44:26 +02:00
|
|
|
return "Free Software Foundation";
|
2014-08-14 11:43:21 +02:00
|
|
|
case CW_VENDOR_ID_CISCO:
|
2014-08-14 11:35:42 +02:00
|
|
|
return "Cisco";
|
2014-07-31 20:58:44 +02:00
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|