Searched refs:pkt (Results 1 – 2 of 2) sorted by relevance
163 static uint16_t ipv4_payload_len(struct ipv4_hdr *pkt) { in ipv4_payload_len() argument164 return (pkt->len - ((pkt->ver_ihl >> 4) * 5)); in ipv4_payload_len()167 void minip_build_mac_hdr(struct eth_hdr *pkt, const uint8_t *dst, uint16_t type) { in minip_build_mac_hdr() argument168 mac_addr_copy(pkt->dst_mac, dst); in minip_build_mac_hdr()169 mac_addr_copy(pkt->src_mac, minip_mac); in minip_build_mac_hdr()170 pkt->type = htons(type); in minip_build_mac_hdr()
113 void minip_build_mac_hdr(struct eth_hdr *pkt, const uint8_t *dst, uint16_t type);
Completed in 6 milliseconds