HomeSort by relevance Sort by last modified time
    Searched refs:dot1x (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/
eapol_test.c 604 struct ieee802_1x_hdr *dot1x; local
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)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c 682 struct ieee802_1x_hdr *dot1x; local
683 dot1x = os_malloc(sizeof(*dot1x) + wpabuf_len(eap));
684 assert(dot1x != NULL);
685 dot1x->version = EAPOL_VERSION;
686 dot1x->type = IEEE802_1X_TYPE_EAP_PACKET;
687 dot1x->length = htons(wpabuf_len(eap));
688 os_memcpy((u8 *) (dot1x + 1), wpabuf_head(eap),
691 (u8 *) dot1x,
692 sizeof(*dot1x) + wpabuf_len(eap))
    [all...]

Completed in 157 milliseconds