Ejemplo n.º 1
0
static void addrconf_sit_config(struct net_device *dev)
{
	struct inet6_dev *idev;

	ASSERT_RTNL();

	/* 
	 * Configure the tunnel with one of our IPv4 
	 * addresses... we should configure all of 
	 * our v4 addrs in the tunnel
	 */

	if ((idev = ipv6_find_idev(dev)) == NULL) {
		printk(KERN_DEBUG "init sit: add_dev failed\n");
		return;
	}

	sit_add_v4_addrs(idev);

	if (dev->flags&IFF_POINTOPOINT) {
		addrconf_add_mroute(dev);
		addrconf_add_lroute(dev);
	} else
		sit_route_add(dev);
}
Ejemplo n.º 2
0
static struct inet6_dev *addrconf_add_dev(struct device *dev)
{
    struct inet6_dev *idev;

    if ((idev = ipv6_find_idev(dev)) == NULL)
        return NULL;

    /* Add default multicast route */
    addrconf_add_mroute(dev);

    /* Add link local route */
    addrconf_add_lroute(dev);
    return idev;
}