actube/src/capwap/cw_ianavendoridtostr.c

15 lines
270 B
C

#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.";
case 11591:
return "Free Software Foundation";
default:
return "Unknown";
}
}