From 9c01e0142070d3e93c0dc2687020acd51879f7cd Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 27 Apr 2016 10:56:54 +0200 Subject: [PATCH] trap-manager: Allow local address to be unspecified If there is currently no route to reach the other peer we just default to left=%any. The local address is only really used to resolve leftsubnet=%dynamic anyway (and perhaps for MIPv6 proxy transport mode). Fixes #1375. --- src/libcharon/sa/trap_manager.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/libcharon/sa/trap_manager.c b/src/libcharon/sa/trap_manager.c index 7eb99ca..40a0682 100644 --- a/src/libcharon/sa/trap_manager.c +++ b/src/libcharon/sa/trap_manager.c @@ -197,9 +197,7 @@ METHOD(trap_manager_t, install, uint32_t, me = charon->kernel->get_source_addr(charon->kernel, other, NULL); if (!me) { - DBG1(DBG_CFG, "installing trap failed, local address unknown"); - other->destroy(other); - return 0; + me = host_create_any(other->get_family(other)); } me->set_port(me, ike_cfg->get_my_port(ike_cfg)); } -- 2.7.4