%any is IP family neutral

This commit is contained in:
Andreas Steffen
2008-11-05 05:32:43 +00:00
parent f41a4a4e15
commit 746115a0be
+2 -2
View File
@@ -2333,8 +2333,8 @@ ike_sa_t * ike_sa_create(ike_sa_id_t *ike_sa_id)
/* initialize private fields */
this->ike_sa_id = ike_sa_id->clone(ike_sa_id);
this->child_sas = linked_list_create();
this->my_host = host_create_from_string("0.0.0.0", IKEV2_UDP_PORT);
this->other_host = host_create_from_string("0.0.0.0", IKEV2_UDP_PORT);
this->my_host = host_create_from_string("%any", IKEV2_UDP_PORT);
this->other_host = host_create_from_string("%any", IKEV2_UDP_PORT);
this->my_id = identification_create_from_encoding(ID_ANY, chunk_empty);
this->other_id = identification_create_from_encoding(ID_ANY, chunk_empty);
this->eap_identity = NULL;