Home | History | Annotate | Download | only in eap_server

Lines Matching defs:vpos

765 	const u8 *pos, *vpos;
815 vpos = pos + 4;
816 mandatory = !!(vpos[0] & 0x80);
817 tlv_type = vpos[0] & 0x3f;
818 tlv_type = (tlv_type << 8) | vpos[1];
819 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
820 vpos += 4;
821 if (vpos + vtlv_len > pos + left) {
829 soh_tlv = vpos;