Home
last modified time | relevance | path

Searched refs:ETHER_ADDR_LEN (Results 1 – 15 of 15) sorted by relevance

/external/tcpdump/
Dether.h41 #define ETHER_ADDR_LEN 6 macro
47 uint8_t ether_dhost[ETHER_ADDR_LEN];
48 uint8_t ether_shost[ETHER_ADDR_LEN];
Dprint-aoe.c292 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in aoev1_mac_print()
294 cp += ETHER_ADDR_LEN; in aoev1_mac_print()
313 if (len < AOEV1_RESERVE_ARG_LEN || (len - AOEV1_RESERVE_ARG_LEN) % ETHER_ADDR_LEN) in aoev1_reserve_print()
324 if (AOEV1_RESERVE_ARG_LEN + nmacs * ETHER_ADDR_LEN != len) in aoev1_reserve_print()
329 cp += ETHER_ADDR_LEN; in aoev1_reserve_print()
Dprint-lane.c37 uint8_t h_dest[ETHER_ADDR_LEN];
38 uint8_t h_source[ETHER_ADDR_LEN];
Dprint-loopback.c87 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in loopback_message_print()
89 cp += ETHER_ADDR_LEN; in loopback_message_print()
Dprint-openflow-1.0.c1156 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in of10_phy_ports_print()
1158 cp += ETHER_ADDR_LEN; in of10_phy_ports_print()
1362 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in of10_match_print()
1365 cp += ETHER_ADDR_LEN; in of10_match_print()
1367 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in of10_match_print()
1370 cp += ETHER_ADDR_LEN; in of10_match_print()
1540 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in of10_actions_print()
1542 cp += ETHER_ADDR_LEN; in of10_actions_print()
1716 ND_TCHECK2(*cp, ETHER_ADDR_LEN); in of10_port_mod_print()
1718 cp += ETHER_ADDR_LEN; in of10_port_mod_print()
Dprint-cfm.c119 uint8_t original_mac[ETHER_ADDR_LEN];
120 uint8_t target_mac[ETHER_ADDR_LEN];
Dprint-slow.c205 uint8_t sys[ETHER_ADDR_LEN];
232 uint8_t req_sys[ETHER_ADDR_LEN];
Daddrtoname.c69 #ifndef ETHER_ADDR_LEN
70 #define ETHER_ADDR_LEN 6 macro
566 if (type == LINKADDR_ETHER && len == ETHER_ADDR_LEN) in linkaddr_string()
Dprint-isoclns.c52 #define SYSTEM_ID_LEN ETHER_ADDR_LEN
2539 while (tmp >= ETHER_ADDR_LEN) { in isis_print()
2540 ND_TCHECK2(*tptr, ETHER_ADDR_LEN); in isis_print()
2541 ND_PRINT((ndo, "\n\t SNPA: %s", isis_print_id(tptr, ETHER_ADDR_LEN))); in isis_print()
2542 tmp -= ETHER_ADDR_LEN; in isis_print()
2543 tptr += ETHER_ADDR_LEN; in isis_print()
/external/tcpdump/win32/src/
Dether_ntohost.c37 unsigned char octet[ETHER_ADDR_LEN];
128 if (sscanf(str, fmt, &eth[0], &eth[1], &eth[2], &eth[3], &eth[4], &eth[5]) != ETHER_ADDR_LEN) in parse_ether_buf()
139 for (i = 0; i < ETHER_ADDR_LEN; i++) in parse_ether_buf()
178 memcpy(&e->eth_addr, &eth, ETHER_ADDR_LEN); in init_ethers()
213 if (!memcmp(&e->octet, &cache->eth_addr, ETHER_ADDR_LEN)) { in ether_ntohost()
/external/dnsmasq/src/
Dbpf.c176 if (mess->htype != ARPHRD_ETHER || mess->hlen != ETHER_ADDR_LEN) in send_via_bpf()
187 memcpy(ether.ether_shost, LLADDR((struct sockaddr_dl *)&ifr->ifr_addr), ETHER_ADDR_LEN); in send_via_bpf()
192 memset(ether.ether_dhost, 255, ETHER_ADDR_LEN); in send_via_bpf()
197 memcpy(ether.ether_dhost, mess->chaddr, ETHER_ADDR_LEN); in send_via_bpf()
Ddhcp.c324 …else if ((ntohs(mess->flags) & 0x8000) || mess->hlen != ETHER_ADDR_LEN || mess->htype != ARPHRD_ET… in dhcp_packet()
730 unsigned char hwaddr[ETHER_ADDR_LEN]; in dhcp_read_ethers()
775 if (!*ip || parse_hex(buff, hwaddr, ETHER_ADDR_LEN, NULL, NULL) != ETHER_ADDR_LEN) in dhcp_read_ethers()
832 conf_addr->hwaddr_len == ETHER_ADDR_LEN && in dhcp_read_ethers()
834 memcmp(conf_addr->hwaddr, hwaddr, ETHER_ADDR_LEN) == 0) in dhcp_read_ethers()
866 memcpy(config->hwaddr->hwaddr, hwaddr, ETHER_ADDR_LEN); in dhcp_read_ethers()
867 config->hwaddr->hwaddr_len = ETHER_ADDR_LEN; in dhcp_read_ethers()
Dconfig.h245 #define ETHER_ADDR_LEN 6 macro
/external/dhcpcd-6.8.2/
Dif-bsd.c388 memcpy(&hw.ether_dhost, dest_hw_addr, ETHER_ADDR_LEN); in if_sendrawpacket()
390 memset(&hw.ether_dhost, 0xff, ETHER_ADDR_LEN); in if_sendrawpacket()
/external/syslinux/core/lwip/src/netif/ppp/
Dppp_oe.c567 u8_t shost[ETHER_ADDR_LEN]; in pppoe_data_input()