Lines Matching refs:avpopt
55 static struct avpopt { struct
57 struct avpopt *next; argument
58 } *avpopt = NULL; variable
187 struct avpopt *p = malloc(sizeof(struct avpopt)); in add_avp()
191 p->next = avpopt; in add_avp()
192 avpopt = p; in add_avp()
1285 while (avpopt) { in radius_init()
1286 struct avpopt *n = avpopt->next; in radius_init()
1288 rc_avpair_parse(avpopt->vpstr, &rstate.avp); in radius_init()
1289 free(avpopt->vpstr); in radius_init()
1290 free(avpopt); in radius_init()
1291 avpopt = n; in radius_init()