actube/src/capwap/cw_ianavendoridtostr.c

13 lines
218 B
C
Raw Normal View History

#include "capwap.h"
/* definition of some iana assigned vendor id's */
const char * cw_ianavendoridtostr(int id){
switch(id){
case 890:
return "ZyXEL Communications Corp.";
default:
return "Unknown";
}
}