Home | History | Annotate | Download | only in radius

Lines Matching refs:attr

161 	DICT_ATTR      *attr;
192 if ((attr = rc_dict_getattr (attribute, VENDOR_NONE)) == (DICT_ATTR *) NULL)
215 strcpy (pair->name, attr->name);
216 pair->attribute = attr->value;
218 pair->type = attr->type;
221 switch (attr->type)
240 warn("rc_avpair_gen: %s has unknown type", attr->name);
269 DICT_ATTR *attr;
303 if ((attr = rc_dict_getattr(vtype, vendor_id)) == NULL) {
313 strcpy(pair->name, attr->name);
314 pair->attribute = attr->value;
316 pair->type = attr->type;
318 switch (attr->type) {
335 warn("rc_avpair_gen: %s has unknown type", attr->name);
352 VALUE_PAIR *rc_avpair_get (VALUE_PAIR *vp, UINT4 attr)
354 for (; vp != (VALUE_PAIR *) NULL && vp->attribute != attr; vp = vp->next)
527 DICT_ATTR *attr = NULL;
547 if ((attr =
591 strcpy (pair->name, attr->name);
592 pair->attribute = attr->value;
593 pair->type = attr->type;
594 pair->vendorcode = attr->vendorcode;