Searched refs:net_tx_packet (Results 1 - 17 of 17) sorted by last modified time

/u-boot/net/
H A Dwget.c158 ptr = net_tx_packet + net_eth_hdr_size() +
H A Dtftp.c324 pkt = net_tx_packet + net_eth_hdr_size() +
327 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
755 * (and small enough that it fits net_tx_packet which
H A Dsntp.c39 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
H A Drarp.c71 pkt = net_tx_packet;
90 net_send_packet(net_tx_packet, eth_hdr_size + ARP_HDR_SIZE);
H A Dnfs.c245 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
H A Dnet6.c334 udp = (struct udp_hdr *)((uchar *)net_tx_packet + net_eth_hdr_size() +
371 pkt = (uchar *)net_tx_packet;
375 (void)eth_send(net_tx_packet, pkt - net_tx_packet + UDP_HDR_SIZE + len);
H A Dnet.c207 uchar *net_tx_packet; variable
405 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
406 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
408 net_rx_packets[i] = net_tx_packet +
892 return net_tx_packet;
920 /* make sure the net_tx_packet is initialized (net_init() was called) */
921 assert(net_tx_packet != NULL);
922 if (net_tx_packet == NULL)
933 pkt = (uchar *)net_tx_packet;
[all...]
H A Dndisc.c119 pkt = (uchar *)net_tx_packet;
144 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
183 pkt = (uchar *)net_tx_packet;
211 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
232 pkt = (uchar *)net_tx_packet;
258 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
H A Dfastboot_udp.c60 packet = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
131 packet = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
H A Ddhcpv6.c180 pkt = net_tx_packet + net_eth_hdr_size() + IP6_HDR_SIZE + UDP_HDR_SIZE;
227 pkt = net_tx_packet + net_eth_hdr_size() + IP6_HDR_SIZE + UDP_HDR_SIZE;
H A Ddns.c58 pkt = (uchar *)(net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE);
H A Dcdp.c115 pkt = net_tx_packet;
204 len = (uchar *)s - ((uchar *)net_tx_packet + ETHER_HDR_SIZE);
208 chksum = cdp_compute_csum((uchar *)net_tx_packet + len,
209 (uchar *)s - (net_tx_packet + len));
214 net_send_packet(net_tx_packet, (uchar *)s - net_tx_packet);
H A Dbootp.c759 pkt = net_tx_packet;
832 net_send_packet(net_tx_packet, pktlen);
1013 pkt = net_tx_packet;
1062 net_send_packet(net_tx_packet, pktlen);
H A Darp.c210 memcpy(((struct ethernet_hdr *)net_tx_packet)->et_dest,
212 net_send_packet(net_tx_packet, arp_wait_tx_packet_size);
H A Dping.c50 eth_hdr_size = net_set_ether(net_tx_packet, net_null_ethaddr, PROT_IP);
51 pkt = (uchar *)net_tx_packet + eth_hdr_size;
/u-boot/drivers/net/
H A Dnetconsole.c128 pkt = (uchar *)net_tx_packet + net_eth_hdr_size() +
210 pkt = (uchar *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
/u-boot/include/
H A Dnet.h502 extern uchar *net_tx_packet; /* THE transmit packet */
652 * net_send_ip_packet() - Transmit "net_tx_packet" as UDP or TCP packet,

Completed in 155 milliseconds