actube/src/capwap/acpriolist.h

32 lines
656 B
C

#ifndef __ACIPRIORITYLIST_H
#define __ACIPRIORITYLIST_H
#include "avltree.h"
struct cw_acprio{
char *name;
uint8_t prio;
};
typedef struct cw_acprio cw_acprio_t;
typedef struct avltree * cw_acpriolist_t;
extern cw_acpriolist_t cw_acpriolist_create();
cw_acprio_t * cw_acpriolist_add(cw_acpriolist_t l, const char *name,int name_len, uint8_t prio);
static inline int cw_acpriolist_get(cw_acpriolist_t l, char * acname){
cw_acprio_t ps,*pf;
ps.name=acname;
pf=avltree_get(l,&ps);
if (!pf)
return 256;
return pf->prio;
}
#define cw_acpriolist_del(l,s) avltree_del(l,s)
#define cw_acpriolist_set(l,n,nl,p) cw_acpriolist_add(l,n,nl,p)
#endif