Changed all usages of lib->attributes to hydra->attributes.
This commit is contained in:
+12
-11
@@ -30,6 +30,7 @@
|
||||
#include <freeswan.h>
|
||||
#include "kameipsec.h"
|
||||
|
||||
#include <hydra.h>
|
||||
#include <credentials/certificates/ac.h>
|
||||
#include <credentials/keys/private_key.h>
|
||||
|
||||
@@ -104,7 +105,7 @@ bool his_id_was_instantiated(const connection_t *c)
|
||||
{
|
||||
identification_t *host;
|
||||
bool equal;
|
||||
|
||||
|
||||
host = identification_create_from_sockaddr((sockaddr_t*)&c->spd.that.host_addr);
|
||||
equal = host->equals(host, c->spd.that.id);
|
||||
host->destroy(host);
|
||||
@@ -113,7 +114,7 @@ bool his_id_was_instantiated(const connection_t *c)
|
||||
else
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -369,8 +370,8 @@ void delete_connection(connection_t *c, bool relations)
|
||||
host_t *vip;
|
||||
|
||||
vip = host_create_from_sockaddr((sockaddr_t*)&c->spd.that.host_srcip);
|
||||
lib->attributes->release_address(lib->attributes, c->spd.that.pool,
|
||||
vip, c->spd.that.id);
|
||||
hydra->attributes->release_address(hydra->attributes, c->spd.that.pool,
|
||||
vip, c->spd.that.id);
|
||||
vip->destroy(vip);
|
||||
}
|
||||
|
||||
@@ -683,7 +684,7 @@ size_t format_end(char *buf, size_t buf_len, const struct end *this,
|
||||
}
|
||||
|
||||
/* id */
|
||||
snprintf(host_id, sizeof(host_id), "[%Y]", this->id);
|
||||
snprintf(host_id, sizeof(host_id), "[%Y]", this->id);
|
||||
|
||||
/* [---hop] */
|
||||
hop[0] = '\0';
|
||||
@@ -769,7 +770,7 @@ static void load_end_certificate(char *filename, struct end *dst)
|
||||
cert_t *cert = NULL;
|
||||
certificate_t *certificate;
|
||||
bool cached_cert = FALSE;
|
||||
|
||||
|
||||
/* initialize end certificate */
|
||||
dst->cert = NULL;
|
||||
|
||||
@@ -1794,7 +1795,7 @@ connection_t *build_outgoing_opportunistic_connection(struct gw_info *gw,
|
||||
else
|
||||
{
|
||||
chunk_t encoding = gw->gw_id->get_encoding(gw->gw_id);
|
||||
id_type_t type = gw->gw_id->get_type(gw->gw_id);
|
||||
id_type_t type = gw->gw_id->get_type(gw->gw_id);
|
||||
ip_address ip_addr;
|
||||
|
||||
initaddr(encoding.ptr, encoding.len,
|
||||
@@ -2758,7 +2759,7 @@ static void initiate_opportunistic_body(struct find_oppo_bundle *b,
|
||||
addrtot(&b->peer_client, 0, pcb, sizeof(pcb));
|
||||
loglog(RC_OPPOFAILURE,
|
||||
"no suitable connection for opportunism "
|
||||
"between %s and %s with %Y as peer",
|
||||
"between %s and %s with %Y as peer",
|
||||
ocb, pcb, ac->gateways_from_dns->gw_id);
|
||||
|
||||
#ifdef KLIPS
|
||||
@@ -3379,7 +3380,7 @@ connection_t *refine_host_connection(const struct state *st,
|
||||
id_match_t match_level = peer_id->matches(peer_id, d->spd.that.id);
|
||||
|
||||
bool matching_id = match_level > ID_MATCH_NONE;
|
||||
|
||||
|
||||
bool matching_auth = (d->policy & auth_policy) != LEMPTY;
|
||||
|
||||
bool matching_trust = trusted_ca(peer_ca
|
||||
@@ -3580,7 +3581,7 @@ static connection_t *fc_try(const connection_t *c, struct host_pair *hp,
|
||||
policy_prio_t best_prio = BOTTOM_PRIO;
|
||||
id_match_t match_level;
|
||||
int pathlen;
|
||||
|
||||
|
||||
|
||||
const bool peer_net_is_host = subnetisaddr(peer_net, &c->spd.that.host_addr);
|
||||
|
||||
@@ -3843,7 +3844,7 @@ void get_peer_ca_and_groups(connection_t *c,
|
||||
if (cert && ac_verify_cert(cert, strict_crl_policy))
|
||||
{
|
||||
ac_t *ac = (ac_t*)cert;
|
||||
|
||||
|
||||
*peer_attributes = ac->get_groups(ac);
|
||||
}
|
||||
else
|
||||
|
||||
+7
-6
@@ -26,6 +26,7 @@
|
||||
#include <freeswan.h>
|
||||
|
||||
#include <library.h>
|
||||
#include <hydra.h>
|
||||
#include <attributes/attributes.h>
|
||||
#include <crypto/prfs/prf.h>
|
||||
|
||||
@@ -129,13 +130,13 @@ static void get_internal_addr(connection_t *c, host_t *requested_vip,
|
||||
{
|
||||
if (c->spd.that.pool)
|
||||
{
|
||||
vip = lib->attributes->acquire_address(lib->attributes,
|
||||
vip = hydra->attributes->acquire_address(hydra->attributes,
|
||||
c->spd.that.pool, c->spd.that.id,
|
||||
requested_vip);
|
||||
if (vip)
|
||||
{
|
||||
chunk_t addr = vip->get_address(vip);
|
||||
|
||||
|
||||
plog("assigning virtual IP %H to peer", vip);
|
||||
initaddr(addr.ptr, addr.len, vip->get_family(vip), &ia->ipaddr);
|
||||
|
||||
@@ -217,14 +218,14 @@ static void get_internal_addr(connection_t *c, host_t *requested_vip,
|
||||
}
|
||||
|
||||
/* assign attributes from registered providers */
|
||||
enumerator = lib->attributes->create_responder_enumerator(lib->attributes,
|
||||
enumerator = hydra->attributes->create_responder_enumerator(hydra->attributes,
|
||||
c->spd.that.id, vip);
|
||||
while (enumerator->enumerate(enumerator, &type, &value))
|
||||
{
|
||||
err_t ugh;
|
||||
host_t *server;
|
||||
sa_family_t family = AF_INET;
|
||||
|
||||
|
||||
switch (type)
|
||||
{
|
||||
case INTERNAL_IP6_DNS:
|
||||
@@ -257,7 +258,7 @@ static void get_internal_addr(connection_t *c, host_t *requested_vip,
|
||||
/* fallthrough */
|
||||
case INTERNAL_IP4_NBNS:
|
||||
if (nbns_idx >= NBNS_SERVER_MAX)
|
||||
{
|
||||
{
|
||||
plog("exceeded the maximum number of %d NBNS servers",
|
||||
NBNS_SERVER_MAX);
|
||||
break;
|
||||
@@ -279,7 +280,7 @@ static void get_internal_addr(connection_t *c, host_t *requested_vip,
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
DESTROY_IF(vip);
|
||||
|
||||
Reference in New Issue
Block a user