From: Guus Sliepen Date: Tue, 5 Jun 2001 16:31:59 +0000 (+0000) Subject: - This oneliner removes the need for ifconfig tap? hw ether fe:fd:0:0:0:0 X-Git-Tag: release-1.0pre5~131 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=fa376fbd4e5151ae43e86441a1e99073eeaf46a5;hp=7a736d47b264065371f35cd9da64485d798cbc80 - This oneliner removes the need for ifconfig tap? hw ether fe:fd:0:0:0:0 --- diff --git a/src/route.c b/src/route.c index 2c3cc0d0..cb74832c 100644 --- a/src/route.c +++ b/src/route.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: route.c,v 1.1.2.11 2001/06/05 16:09:55 guus Exp $ + $Id: route.c,v 1.1.2.12 2001/06/05 16:31:59 guus Exp $ */ #include "config.h" @@ -132,6 +132,10 @@ void route_arp(vpn_packet_t *packet) unsigned char ipbuf[4]; ipv4_t dest; cp + /* First, snatch the source address from the ARP packet */ + + memcpy(mymac.net.mac.address.x, packet->data + 6, 6); + /* This routine generates replies to ARP requests. You don't need to set NOARP flag on the interface anymore (which is broken on FreeBSD). Most of the code here is taken from choparp.c by Takamichi Tateoka (tree@mma.club.uec.ac.jp)