Home
last modified time | relevance | path

Searched refs:net_write_ip (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/drivers/net/
H A Dsandbox.c94 net_write_ip(&arp_recv->ar_spa, priv->fake_host_ipaddr); in sandbox_eth_arp_req_to_reply()
150 net_write_ip((void *)&ipr->ip_src, priv->fake_host_ipaddr); in sandbox_eth_ping_req_to_reply()
193 net_write_ip(&arp_recv->ar_spa, priv->fake_host_ipaddr); in sandbox_eth_recv_arp_req()
195 net_write_ip(&arp_recv->ar_tpa, net_ip); in sandbox_eth_recv_arp_req()
235 net_write_ip(&ipr->ip_src, priv->fake_host_ipaddr); in sandbox_eth_recv_ping_req()
236 net_write_ip(&ipr->ip_dst, net_ip); in sandbox_eth_recv_ping_req()
H A Dsandbox-raw.c92 net_write_ip(&arp->ar_spa, arp_ip); in sb_eth_raw_recv()
94 net_write_ip(&arp->ar_tpa, net_ip); in sb_eth_raw_recv()
/openbmc/u-boot/net/
H A Darp.c74 net_write_ip(&arp->ar_spa, source_ip); /* source IP addr */ in arp_raw_request()
76 net_write_ip(&arp->ar_tpa, target_ip); /* target IP addr */ in arp_raw_request()
H A Dbootp.c778 net_write_ip(&bp->bp_ciaddr, zero_ip); in bootp_request()
779 net_write_ip(&bp->bp_yiaddr, zero_ip); in bootp_request()
780 net_write_ip(&bp->bp_siaddr, zero_ip); in bootp_request()
781 net_write_ip(&bp->bp_giaddr, zero_ip); in bootp_request()
1002 net_write_ip(&bp->bp_giaddr, zero_ip); in dhcp_send_request_packet()
/openbmc/u-boot/include/
H A Dnet.h739 static inline void net_write_ip(void *to, struct in_addr ip) in net_write_ip() function