From 2c5d9fe86b7a685b86e6e0e4d982f80d914ded8b Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 4 Nov 2011 20:10:00 -0500 Subject: [PATCH] ip6: subscribe to route group so we get RTM_NEWROUTE/RTM_DELROUTE (lp:886410) Found by Michael Mol; need to subscribe to the group otherwise we won't get the messages. --- src/ip6-manager/nm-ip6-manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ip6-manager/nm-ip6-manager.c b/src/ip6-manager/nm-ip6-manager.c index 1c761305e8..503dab51d9 100644 --- a/src/ip6-manager/nm-ip6-manager.c +++ b/src/ip6-manager/nm-ip6-manager.c @@ -1354,6 +1354,7 @@ nm_ip6_manager_init (NMIP6Manager *manager) priv->monitor = nm_netlink_monitor_get (); nm_netlink_monitor_subscribe (priv->monitor, RTNLGRP_IPV6_IFADDR, NULL); nm_netlink_monitor_subscribe (priv->monitor, RTNLGRP_IPV6_PREFIX, NULL); + nm_netlink_monitor_subscribe (priv->monitor, RTNLGRP_IPV6_ROUTE, NULL); nm_netlink_monitor_subscribe (priv->monitor, RTNLGRP_ND_USEROPT, NULL); nm_netlink_monitor_subscribe (priv->monitor, RTNLGRP_LINK, NULL);