Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:dot1x

550 		struct ieee802_1x_hdr *dot1x;
551 dot1x = os_malloc(sizeof(*dot1x) + len);
552 assert(dot1x != NULL);
553 dot1x->version = EAPOL_VERSION;
554 dot1x->type = IEEE802_1X_TYPE_EAP_PACKET;
555 dot1x->length = htons(len);
556 os_memcpy((u8 *) (dot1x + 1), eap, len);
558 (u8 *) dot1x, sizeof(*dot1x) + len);
559 os_free(dot1x);