Home | History | Annotate | Download | only in eap_server

Lines Matching refs:vpos

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