diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2016-06-08 22:57:36 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2016-06-08 22:57:36 +0300 |
commit | 2d10076d240537e1f48bca0bb6e0b99aa4427406 (patch) | |
tree | 6ba7d9e826e7227ef56e6e808edacd674aa7ec37 /accel-pppd/ctrl/ipoe/arp.c | |
parent | 00015eb051babde040ec30e3b867f49b7d4e5441 (diff) | |
download | accel-ppp-2d10076d240537e1f48bca0bb6e0b99aa4427406.tar.gz accel-ppp-2d10076d240537e1f48bca0bb6e0b99aa4427406.zip |
ipoe: fixed incorrect arp reply (reply for request which started session)
Diffstat (limited to 'accel-pppd/ctrl/ipoe/arp.c')
-rw-r--r-- | accel-pppd/ctrl/ipoe/arp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel-pppd/ctrl/ipoe/arp.c b/accel-pppd/ctrl/ipoe/arp.c index 58533582..4818c3b5 100644 --- a/accel-pppd/ctrl/ipoe/arp.c +++ b/accel-pppd/ctrl/ipoe/arp.c @@ -120,6 +120,7 @@ void arp_send(int ifindex, struct _arphdr *arph) dst.sll_family = AF_PACKET; dst.sll_ifindex = ifindex; dst.sll_protocol = htons(ETH_P_ARP); + memcpy(dst.sll_addr, arph->ar_tha, ETH_ALEN); arph->ar_op = htons(ARPOP_REPLY); |