Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:dot1x

604 		struct ieee802_1x_hdr *dot1x;
605 dot1x = os_malloc(sizeof(*dot1x) + len);
606 assert(dot1x != NULL);
607 dot1x->version = EAPOL_VERSION;
608 dot1x->type = IEEE802_1X_TYPE_EAP_PACKET;
609 dot1x->length = htons(len);
610 os_memcpy((u8 *) (dot1x + 1), eap, len);
612 (u8 *) dot1x, sizeof(*dot1x) + len);
613 os_free(dot1x);