Home | History | Annotate | Download | only in radius

Lines Matching full:vdict

48 	VENDOR_DICT    *vdict;
89 vdict = (VENDOR_DICT *) malloc (sizeof (VENDOR_DICT));
90 if (!vdict) {
95 strcpy(vdict->vendorname, namestr);
96 vdict->vendorcode = value;
97 vdict->attributes = NULL;
98 vdict->next = vendor_dictionaries;
99 vendor_dictionaries = vdict;
171 vdict = rc_dict_findvendor(vendorstr);
172 if (!vdict) {
179 vdict = NULL;
191 if (vdict) {
192 attr->vendorcode = vdict->vendorcode;
200 if (vdict) {
201 attr->next = vdict->attributes;
202 vdict->attributes = attr;