X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Froute.c;h=a143082d403a093cc5dcbbd472e1d1e69cf69776;hp=fd18dfb823f431173fecaba018dd143ccae44df4;hb=12f6b80429bc05a828051d72cc46f173e4657180;hpb=96ef7becdd71fc63c3489e3696117c1f137eade5 diff --git a/src/route.c b/src/route.c index fd18dfb8..a143082d 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.13 2001/06/06 19:12:38 guus Exp $ + $Id: route.c,v 1.1.2.17 2001/07/20 20:25:10 guus Exp $ */ #include "config.h" @@ -27,17 +27,21 @@ #endif #include #include -#include +#ifdef HAVE_SOLARIS + #include + #define ETHER_ADDR_LEN 6 +#else + #include +#endif #include #include #include #include +#include #include #include "net.h" -#include "net/ethernet.h" -#include "netinet/if_ether.h" #include "connection.h" #include "subnet.h" #include "route.h" @@ -74,7 +78,7 @@ cp for(node = connection_tree->head; node; node = node->next) { p = (connection_t *)node->data; - if(p->status.meta && p->status.active && p!= myself) + if(p->status.active) send_add_subnet(p, subnet); } } @@ -254,15 +258,31 @@ void route_incoming(connection_t *source, vpn_packet_t *packet) { case RMODE_ROUTER: memcpy(packet->data, mymac.net.mac.address.x, 6); /* Override destination address to make the kernel accept it */ + accept_packet(packet); break; case RMODE_SWITCH: - if(packet->data[0] & 0x01) /* Broadcast? */ - broadcast_packet(source, packet); /* If yes, spread it on */ + { + subnet_t *subnet; + + subnet = lookup_subnet_mac((mac_t *)(&packet->data[0])); + + if(subnet) + { + if(subnet->owner == myself) + accept_packet(packet); + else + send_packet(subnet->owner, packet); + } + else + { + broadcast_packet(source, packet); + accept_packet(packet); + } + } break; case RMODE_HUB: broadcast_packet(source,packet); /* Spread it on */ + accept_packet(packet); break; } - - accept_packet(packet); }