Searched refs:pktbuf_prepend (Results 1 – 6 of 6) sorted by relevance
/lk-master/lib/minip/ |
A D | minip.c | 135 eth = pktbuf_prepend(p, sizeof(struct eth_hdr)); in send_arp_request() 188 struct ipv4_hdr *ip = pktbuf_prepend(p, sizeof(struct ipv4_hdr)); in minip_ipv4_send() 189 struct eth_hdr *eth = pktbuf_prepend(p, sizeof(struct eth_hdr)); in minip_ipv4_send() 229 icmp = pktbuf_prepend(p, sizeof(struct icmp_pkt)); in send_ping_reply() 230 ip = pktbuf_prepend(p, sizeof(struct ipv4_hdr)); in send_ping_reply() 231 eth = pktbuf_prepend(p, sizeof(struct eth_hdr)); in send_ping_reply() 367 reth = pktbuf_prepend(rp, sizeof(struct eth_hdr)); in handle_arp_pkt()
|
A D | udp.c | 133 udp = pktbuf_prepend(p, sizeof(udp_hdr_t)); in udp_send_iovec() 134 ip = pktbuf_prepend(p, sizeof(struct ipv4_hdr)); in udp_send_iovec() 135 eth = pktbuf_prepend(p, sizeof(struct eth_hdr)); in udp_send_iovec()
|
A D | arp.c | 135 eth = pktbuf_prepend(p, sizeof(struct eth_hdr)); in arp_send_request()
|
A D | pktbuf.c | 158 void *pktbuf_prepend(pktbuf_t *p, size_t sz) { in pktbuf_prepend() function
|
A D | tcp.c | 695 tcp_header_t *header = pktbuf_prepend(p, sizeof(tcp_header_t) + options_length); in tcp_send()
|
/lk-master/lib/minip/include/lib/ |
A D | pktbuf.h | 88 void *pktbuf_prepend(pktbuf_t *p, size_t sz);
|
Completed in 10 milliseconds