diff options
author | Guillaume Subiron <maethor@subiron.org> | 2015-12-19 22:24:56 +0100 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2016-02-04 13:22:06 +0800 |
commit | 199a36ba66f7ed2bc8e48dad40453b8991d11446 (patch) | |
tree | 558d23a0cece268527238313fe1d171d48a5c66e /slirp.c | |
parent | 33c25f72b160533bb1ec4ec1e38833af84e588e5 (diff) | |
download | slirp-199a36ba66f7ed2bc8e48dad40453b8991d11446.zip slirp-199a36ba66f7ed2bc8e48dad40453b8991d11446.tar.gz slirp-199a36ba66f7ed2bc8e48dad40453b8991d11446.tar.bz2 |
slirp: Generalizing and neutralizing ARP code
Basically, this patch replaces "arp" by "resolution" every time "arp"
means "mac resolution" and not specifically ARP.
This prepares for IPv6 support.
Signed-off-by: Guillaume Subiron <maethor@subiron.org>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'slirp.c')
-rw-r--r-- | slirp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -780,7 +780,7 @@ int if_encap(Slirp *slirp, struct mbuf *ifm) struct ethhdr *reh = (struct ethhdr *)arp_req; struct arphdr *rah = (struct arphdr *)(arp_req + ETH_HLEN); - if (!ifm->arp_requested) { + if (!ifm->resolution_requested) { /* If the client addr is not known, send an ARP request */ memset(reh->h_dest, 0xff, ETH_ALEN); memcpy(reh->h_source, special_ethaddr, ETH_ALEN - 4); @@ -806,7 +806,7 @@ int if_encap(Slirp *slirp, struct mbuf *ifm) rah->ar_tip = iph->ip_dst.s_addr; slirp->client_ipaddr = iph->ip_dst; slirp_output(slirp->opaque, arp_req, sizeof(arp_req)); - ifm->arp_requested = true; + ifm->resolution_requested = true; /* Expire request and drop outgoing packet after 1 second */ ifm->expiration_date = |