diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-10-18 12:28:14 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-18 12:28:14 +0200 |
commit | 8bd00205f4f3c0c57eaf49f4d281f52befa9a855 (patch) | |
tree | cf6ac06017a3d99ee3f93420072d9902922ff5cf /src/libipsec/ipsec_processor.c | |
parent | bbf90fcc79ce5de807136263713fcf48033a3bc7 (diff) | |
parent | 25a413cb96f9711411dd1590d62d323098c267e0 (diff) | |
download | strongswan-8bd00205f4f3c0c57eaf49f4d281f52befa9a855.tar.bz2 strongswan-8bd00205f4f3c0c57eaf49f4d281f52befa9a855.tar.xz |
Merge branch 'android-mobility'
This brings support for MOBIKE to the Android app. The app also tries
to keep the connection up as long as possible.
DNS queries are now handled by a new class that uses independent threads to
resolve them, this allows to cancel them e.g. if no network connectivity is
available (otherwise the app would block until the DNS query returns).
Diffstat (limited to 'src/libipsec/ipsec_processor.c')
-rw-r--r-- | src/libipsec/ipsec_processor.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libipsec/ipsec_processor.c b/src/libipsec/ipsec_processor.c index a91d9e074..353f0e7e0 100644 --- a/src/libipsec/ipsec_processor.c +++ b/src/libipsec/ipsec_processor.c @@ -146,7 +146,9 @@ static job_requeue_t process_inbound(private_ipsec_processor_t *this) policy->destroy(policy); break; } - DBG1(DBG_ESP, "discarding inbound IP packet due to policy"); + DBG1(DBG_ESP, "discarding inbound IP packet %H == %H due to " + "policy", ip_packet->get_source(ip_packet), + ip_packet->get_destination(ip_packet)); /* no matching policy found, fall-through */ } case IPPROTO_NONE: |