Searched refs:mac_addr (Results 1 - 25 of 87) sorted by relevance

1234

/freebsd-9.3-release/sys/dev/qlxgb/
H A Dqla_inline.h126 return (ha->hw.mac_addr);
148 ha->hw.mac_addr[5] = macp[0];
149 ha->hw.mac_addr[4] = macp[1];
153 ha->hw.mac_addr[3] = macp[0];
154 ha->hw.mac_addr[2] = macp[1];
155 ha->hw.mac_addr[1] = macp[2];
156 ha->hw.mac_addr[0] = macp[3];
160 ha->hw.mac_addr[5] = macp[0];
161 ha->hw.mac_addr[4] = macp[1];
162 ha->hw.mac_addr[
[all...]
/freebsd-9.3-release/sys/dev/e1000/
H A De1000_82543.h51 u32 frame_len, u8 *mac_addr,
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Dpeerkey_auth.c100 if (kde.rsn_ie == NULL || kde.mac_addr == NULL ||
107 /* Initiator = sm->addr; Peer = kde.mac_addr */
109 search.addr = kde.mac_addr;
115 MAC2STR(kde.mac_addr));
116 wpa_smk_send_error(wpa_auth, sm, kde.mac_addr, STK_MUI_SMK,
175 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, kde->mac_addr, ETH_ALEN,
274 kde.mac_addr == NULL || kde.mac_addr_len < ETH_ALEN ||
281 /* Peer = sm->addr; Initiator = kde.mac_addr;
284 search.addr = kde.mac_addr;
290 MAC2STR(kde.mac_addr));
[all...]
H A Dwpa_auth_ie.h26 const u8 *mac_addr; member in struct:wpa_eapol_ie_parse
H A Diapp.c88 u8 mac_addr[ETH_ALEN]; member in struct:iapp_add_notify
109 u8 mac_addr[ETH_ALEN]; member in struct:iapp_move_notify
120 u8 mac_addr[ETH_ALEN]; member in struct:iapp_move_response
137 u8 mac_addr[ETH_ALEN]; member in struct:iapp_cache_notify
150 u8 mac_addr[ETH_ALEN]; member in struct:iapp_cache_response
184 static void iapp_send_add(struct iapp_data *iapp, u8 *mac_addr, u16 seq_num) argument
203 os_memcpy(add->mac_addr, mac_addr, ETH_ALEN);
290 sta = ap_get_sta(iapp->hapd, add->mac_addr);
293 hostapd_logger(iapp->hapd, add->mac_addr, HOSTAPD_MODULE_IAP
[all...]
H A Dwps_hostapd.c48 static int hostapd_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk, argument
56 MACSTR, MAC2STR(mac_addr));
69 os_memcpy(p->addr, mac_addr, ETH_ALEN);
87 fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
120 uuid, MAC2STR(dev->mac_addr), dev->device_name,
137 t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
147 static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr, argument
155 MAC2STR(mac_addr), uuid);
158 mac_addr, uuid_e);
225 MAC2STR(cred->mac_addr));
842 hostapd_rx_req_put_wlan_response( void *priv, enum upnp_wps_wlanevent_type ev_type, const u8 *mac_addr, const struct wpabuf *msg, enum wps_msg_type msg_type) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/wps/
H A Dwps_ufd.c97 u8 *mac_addr = wps->dev.mac_addr; local
100 mac_addr[2], mac_addr[3], mac_addr[4],
101 mac_addr[5]);
H A Dwps_er.h51 u8 mac_addr[ETH_ALEN]; member in struct:wps_er_ap
79 u8 mac_addr[ETH_ALEN]; /* mac addr of network i.f. we use */ member in struct:wps_er
H A Dwps.h46 * @mac_addr: MAC address of the Credential receiver
59 u8 mac_addr[ETH_ALEN]; member in struct:wps_credential
69 * @mac_addr: Device MAC address
80 u8 mac_addr[ETH_ALEN]; member in struct:wps_device_data
214 * @mac_addr: MAC address of the Enrollee
221 int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
254 * @mac_addr: MAC address of the Enrollee
260 void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
440 const u8 *mac_addr; member in struct:wps_event_data::wps_event_er_ap
456 const u8 *mac_addr; member in struct:wps_event_data::wps_event_er_enrollee
[all...]
H A Dwps_attr_process.c201 const u8 *mac_addr)
203 if (mac_addr == NULL) {
209 wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR, MAC2STR(mac_addr));
210 os_memcpy(cred->mac_addr, mac_addr, ETH_ALEN);
297 wps_process_cred_mac_addr(cred, attr->mac_addr) ||
324 wps_process_cred_mac_addr(cred, attr->mac_addr))
200 wps_process_cred_mac_addr(struct wps_credential *cred, const u8 *mac_addr) argument
H A Dwps_upnp.h30 const u8 *mac_addr, const struct wpabuf *msg,
H A Dwps_upnp_i.h116 u8 mac_addr[ETH_ALEN]; /* mac addr of network i.f. we use */ member in struct:upnp_wps_device_sm
H A Dwps_enrollee.c268 wpabuf_put_data(msg, wps->wps->dev.mac_addr, ETH_ALEN);
672 if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
676 ")", MAC2STR(wps->cred.mac_addr),
677 MAC2STR(wps->wps->dev.mac_addr));
737 if (os_memcmp(cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
741 ")", MAC2STR(cred.mac_addr),
742 MAC2STR(wps->wps->dev.mac_addr));
/freebsd-9.3-release/contrib/wpa/src/rsn_supp/
H A Dwpa_ie.h26 const u8 *mac_addr; member in struct:wpa_eapol_ie_parse
H A Dpeerkey.c204 if (kde.rsn_ie == NULL || kde.mac_addr == NULL ||
212 MAC2STR(kde.mac_addr));
234 wpa_supplicant_send_smk_error(sm, src_addr, kde.mac_addr,
246 os_memcpy(peerkey->addr, kde.mac_addr, ETH_ALEN);
449 MAC2STR(kde->mac_addr));
479 MAC2STR(kde->mac_addr));
513 "unacceptable cipher", MAC2STR(kde->mac_addr));
514 wpa_supplicant_send_smk_error(sm, src_addr, kde->mac_addr,
546 if (kde.mac_addr == NULL || kde.mac_addr_len < ETH_ALEN ||
556 if (os_memcmp(peerkey->addr, kde.mac_addr, ETH_ALE
[all...]
/freebsd-9.3-release/sys/arm/econa/
H A Dif_ecevar.h184 uint8_t mac_addr[6]; member in struct:arl_table_entry_t
189 char mac_addr[6]; member in struct:mac_list
/freebsd-9.3-release/sys/dev/cxgb/common/
H A Dcxgb_ctl_defs.h68 const unsigned char *mac_addr; member in struct:iff_mac
/freebsd-9.3-release/sys/dev/ixgb/
H A Dixgb_ee.h85 uint8_t mac_addr[IXGB_ETH_LENGTH_OF_ADDRESS]; member in struct:ixgb_ee_map_type
H A Dixgb_hw.c1131 * mac_addr - pointer to MAC address.
1135 mac_addr_valid(uint8_t *mac_addr) argument
1142 if (IS_MULTICAST(mac_addr)) {
1147 else if (IS_BROADCAST(mac_addr)) {
1152 else if (mac_addr[0] == 0 &&
1153 mac_addr[1] == 0 &&
1154 mac_addr[2] == 0 &&
1155 mac_addr[3] == 0 &&
1156 mac_addr[4] == 0 &&
1157 mac_addr[
[all...]
H A Dixgb_ee.c554 * mac_addr - Ethernet Address if EEPROM contents are valid, 0 otherwise
560 uint8_t *mac_addr)
569 mac_addr[i] = ee_map->mac_addr[i];
570 DEBUGOUT2("mac(%d) = %.2X\n", i, mac_addr[i]);
559 ixgb_get_ee_mac_addr(struct ixgb_hw *hw, uint8_t *mac_addr) argument
/freebsd-9.3-release/sys/dev/qlxge/
H A Dqls_inline.h77 return (ha->mac_addr);
/freebsd-9.3-release/sys/mips/rmi/
H A Drmi_boot_info.h58 uint64_t mac_addr; member in struct:boot1_info
/freebsd-9.3-release/sys/dev/sbni/
H A Dif_sbnivar.h59 u_int mac_addr : 24; member in struct:sbni_flags
/freebsd-9.3-release/sys/dev/sfxge/common/
H A Defx_wol.c132 paramp->ewp_magic.mac_addr);
289 paramp->elop_arp.mac_addr);
299 paramp->elop_ns.mac_addr);
/freebsd-9.3-release/sys/dev/qlxgbe/
H A Dql_inline.h124 return (ha->hw.mac_addr);

Completed in 136 milliseconds

1234