]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
ike: Simplify error handling if name resolution failed
authorTobias Brunner <tobias@strongswan.org>
Mon, 11 Nov 2013 15:17:35 +0000 (16:17 +0100)
committerTobias Brunner <tobias@strongswan.org>
Thu, 23 Jan 2014 09:04:19 +0000 (10:04 +0100)
This avoids a second name resolution attempt just to determine if %any
etc. was configured.

Fixes #440.

src/libcharon/sa/ike_sa.c

index 9d417ad7d1a01f0dbfe0bf625164d66255968533..53da1d7ca9b858eac028809502ce3c78397f5d75 100644 (file)
@@ -1170,26 +1170,13 @@ METHOD(ike_sa_t, initiate, status_t,
 #endif /* ME */
                        )
                {
-                       bool is_anyaddr;
-                       host_t *host;
                        char *addr;
 
                        addr = this->ike_cfg->get_other_addr(this->ike_cfg);
-                       host = this->ike_cfg->resolve_other(this->ike_cfg, AF_UNSPEC);
-                       is_anyaddr = host && host->is_anyaddr(host);
-                       DESTROY_IF(host);
-
-                       if (is_anyaddr || !this->retry_initiate_interval)
+                       if (!this->retry_initiate_interval)
                        {
-                               if (is_anyaddr)
-                               {
-                                       DBG1(DBG_IKE, "unable to initiate to %s", addr);
-                               }
-                               else
-                               {
-                                       DBG1(DBG_IKE, "unable to resolve %s, initiate aborted",
-                                                addr);
-                               }
+                               DBG1(DBG_IKE, "unable to resolve %s, initiate aborted",
+                                        addr);
                                DESTROY_IF(child_cfg);
                                charon->bus->alert(charon->bus, ALERT_PEER_ADDR_FAILED);
                                return DESTROY_ME;