diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-04 19:37:31 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-04 19:37:31 -0700 |
commit | d370b4bb3e6ff67027406f71cb6cf7a64d60b016 (patch) | |
tree | 884265bd19cfee3526285ac44ac59a7be7488396 /firmware/microblaze/lib/net_common.c | |
parent | 4d6caa8a7bf83e6ee78022a109cbc76e075b1ef9 (diff) | |
parent | 8a695c06848dfd254d372e661aa00c2c8d6184a1 (diff) | |
download | uhd-d370b4bb3e6ff67027406f71cb6cf7a64d60b016.tar.gz uhd-d370b4bb3e6ff67027406f71cb6cf7a64d60b016.tar.bz2 uhd-d370b4bb3e6ff67027406f71cb6cf7a64d60b016.zip |
Merge branch 'garp' into good_stuff
Diffstat (limited to 'firmware/microblaze/lib/net_common.c')
-rw-r--r-- | firmware/microblaze/lib/net_common.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/firmware/microblaze/lib/net_common.c b/firmware/microblaze/lib/net_common.c index 6c9509c92..beaaa5948 100644 --- a/firmware/microblaze/lib/net_common.c +++ b/firmware/microblaze/lib/net_common.c @@ -351,6 +351,22 @@ send_arp_reply(struct arp_eth_ipv4 *req, eth_mac_addr_t our_mac) send_pkt(t, ETHERTYPE_ARP, &reply, sizeof(reply), 0, 0, 0, 0); } +void send_gratuitous_arp(void){ + struct arp_eth_ipv4 req _AL4; + req.ar_hrd = ARPHRD_ETHER; + req.ar_pro = ETHERTYPE_IPV4; + req.ar_hln = sizeof(eth_mac_addr_t); + req.ar_pln = sizeof(struct ip_addr); + req.ar_op = ARPOP_REQUEST; + memcpy(req.ar_sha, ethernet_mac_addr(), sizeof(eth_mac_addr_t)); + memcpy(req.ar_sip, get_ip_addr(), sizeof(struct ip_addr)); + memset(req.ar_tha, 0x00, sizeof(eth_mac_addr_t)); + memcpy(req.ar_tip, get_ip_addr(), sizeof(struct ip_addr)); + + //send the request with a broadcast ethernet mac address + eth_mac_addr_t t; memset(&t, 0xff, sizeof(t)); + send_pkt(t, ETHERTYPE_ARP, &req, sizeof(req), 0, 0, 0, 0); +} static void handle_arp_packet(struct arp_eth_ipv4 *p, size_t size) |