HomeSort by relevance Sort by last modified time
    Searched defs:ethhdr (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/wpa_supplicant_8/src/ap/
preauth_auth.c 48 struct l2_ethhdr *ethhdr; local
52 if (len < sizeof(*ethhdr) + sizeof(*hdr)) {
58 ethhdr = (struct l2_ethhdr *) buf;
59 hdr = (struct ieee802_1x_hdr *) (ethhdr + 1);
61 if (os_memcmp(ethhdr->h_dest, hapd->own_addr, ETH_ALEN) != 0) {
63 MACSTR, MAC2STR(ethhdr->h_dest));
67 sta = ap_get_sta(hapd, ethhdr->h_source);
74 sta = ap_sta_add(hapd, ethhdr->h_source);
92 ieee802_1x_receive(hapd, ethhdr->h_source, (u8 *) (ethhdr + 1)
235 struct l2_ethhdr *ethhdr; local
    [all...]
wpa_auth_glue.c 570 struct l2_ethhdr *ethhdr; local
571 if (len < sizeof(*ethhdr))
573 ethhdr = (struct l2_ethhdr *) buf;
575 MACSTR, MAC2STR(ethhdr->h_source), MAC2STR(ethhdr->h_dest));
576 if (!is_multicast_ether_addr(ethhdr->h_dest) &&
577 os_memcmp(hapd->own_addr, ethhdr->h_dest, ETH_ALEN) != 0)
579 wpa_ft_rrb_rx(hapd->wpa_auth, ethhdr->h_source, buf + sizeof(*ethhdr),
580 len - sizeof(*ethhdr));
    [all...]
  /development/ndk/platforms/android-3/include/linux/
if_ether.h 75 struct ethhdr { struct
  /external/libnl/include/linux/
if_ether.h 100 struct ethhdr { struct
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_freebsd.c 81 struct l2_ethhdr *ethhdr; local
87 if (packet == NULL || hdr.caplen < sizeof(*ethhdr))
90 ethhdr = (struct l2_ethhdr *) packet;
92 buf = (unsigned char *) ethhdr;
95 buf = (unsigned char *) (ethhdr + 1);
96 len = hdr.caplen - sizeof(*ethhdr);
98 l2->rx_callback(l2->rx_callback_ctx, ethhdr->h_source, buf, len);
l2_packet_ndis.c 283 struct l2_ethhdr *ethhdr = (struct l2_ethhdr *) l2->rx_buf; local
288 if (l2->l2_hdr || l2->rx_written < sizeof(*ethhdr)) {
289 rx_buf = (u8 *) ethhdr;
292 rx_buf = (u8 *) (ethhdr + 1);
293 rx_len = l2->rx_written - sizeof(*ethhdr);
295 rx_src = ethhdr->h_source;
l2_packet_pcap.c 124 struct l2_ethhdr *ethhdr; local
130 if (packet == NULL || hdr.caplen < sizeof(*ethhdr))
133 ethhdr = (struct l2_ethhdr *) packet;
135 buf = (unsigned char *) ethhdr;
138 buf = (unsigned char *) (ethhdr + 1);
139 len = hdr.caplen - sizeof(*ethhdr);
141 l2->rx_callback(l2->rx_callback_ctx, ethhdr->h_source, buf, len);
151 struct l2_ethhdr *ethhdr; local
155 if (pkt_data == NULL || hdr->caplen < sizeof(*ethhdr))
158 ethhdr = (struct l2_ethhdr *) pkt_data
    [all...]
l2_packet_winpcap.c 106 struct l2_ethhdr *ethhdr; local
108 if (pkt_data == NULL || hdr->caplen < sizeof(*ethhdr))
111 ethhdr = (struct l2_ethhdr *) pkt_data;
113 l2->rx_buf = (u8 *) ethhdr;
116 l2->rx_buf = (u8 *) (ethhdr + 1);
117 l2->rx_len = hdr->caplen - sizeof(*ethhdr);
119 l2->rx_src = ethhdr->h_source;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-15/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-16/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-17/arch-arm/usr/include/linux/
if_ether.h 75 struct ethhdr { struct
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/linux/
if_ether.h 75 struct ethhdr { struct

Completed in 674 milliseconds

1 2 3