Forward packets in router mode.
This commit is contained in:
parent
8c91fac315
commit
ed50931290
1 changed files with 17 additions and 3 deletions
18
src/route.c
18
src/route.c
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
$Id: route.c,v 1.1.2.23 2002/02/18 16:25:19 guus Exp $
|
$Id: route.c,v 1.1.2.24 2002/02/20 16:04:59 guus Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
@ -269,8 +269,22 @@ void route_incoming(node_t *source, vpn_packet_t *packet)
|
||||||
switch(routing_mode)
|
switch(routing_mode)
|
||||||
{
|
{
|
||||||
case RMODE_ROUTER:
|
case RMODE_ROUTER:
|
||||||
memcpy(packet->data, mymac.net.mac.address.x, 6); /* Override destination address to make the kernel accept it */
|
{
|
||||||
|
node_t *n;
|
||||||
|
|
||||||
|
n = route_ipv4(packet);
|
||||||
|
|
||||||
|
if(n)
|
||||||
|
{
|
||||||
|
if(n == myself)
|
||||||
|
{
|
||||||
|
memcpy(packet->data, mymac.net.mac.address.x, 6);
|
||||||
write_packet(packet);
|
write_packet(packet);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
send_packet(n, packet);
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case RMODE_SWITCH:
|
case RMODE_SWITCH:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue