From f2f387ef2b4ab36cf6017ff8c911d4e8439845a7 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Wed, 8 Aug 2012 13:22:45 +0300 Subject: [PATCH] connection: Add more debugging when setting VPN routes --- src/connection.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/connection.c b/src/connection.c index d40f428..2e5cea6 100644 --- a/src/connection.c +++ b/src/connection.c @@ -149,6 +149,9 @@ static void set_vpn_routes(struct gateway_data *new_gateway, char *dest; int index; + DBG("new %p service %p gw %s type %d peer %s active %p", + new_gateway, service, gateway, type, peer, active_gateway); + if (type == CONNMAN_IPCONFIG_TYPE_IPV4) { ipconfig = __connman_service_get_ip4config(service); config = new_gateway->ipv4_gateway; @@ -210,6 +213,8 @@ done: if (active_gateway->ipv4_gateway == NULL) return; + DBG("active gw %s", active_gateway->ipv4_gateway->gateway); + if (g_strcmp0(active_gateway->ipv4_gateway->gateway, "0.0.0.0") != 0) dest = active_gateway->ipv4_gateway->gateway; @@ -224,6 +229,8 @@ done: if (active_gateway->ipv6_gateway == NULL) return; + DBG("active gw %s", active_gateway->ipv6_gateway->gateway); + if (g_strcmp0(active_gateway->ipv6_gateway->gateway, "::") != 0) dest = active_gateway->ipv6_gateway->gateway; -- 2.7.4