Searched refs:ethhdr (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/wpa/src/ap/
H A Dpreauth_auth.c48 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
235 struct l2_ethhdr *ethhdr; local
[all...]
H A Dwpa_auth_glue.c473 struct l2_ethhdr *ethhdr; local
474 if (len < sizeof(*ethhdr))
476 ethhdr = (struct l2_ethhdr *) buf;
478 MACSTR, MAC2STR(ethhdr->h_source), MAC2STR(ethhdr->h_dest));
479 wpa_ft_rrb_rx(hapd->wpa_auth, ethhdr->h_source, buf + sizeof(*ethhdr),
480 len - sizeof(*ethhdr));
/freebsd-10-stable/contrib/wpa/src/l2_packet/
H A Dl2_packet_freebsd.c81 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);
H A Dl2_packet_ndis.c283 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;
/freebsd-10-stable/sys/dev/usb/net/
H A Dif_usievar.h193 struct ether_header ethhdr; member in struct:usie_desc
H A Dif_usie.c871 switch (be16toh(rxd->ethhdr.ether_type)) {

Completed in 163 milliseconds