fixed peer_cfg lookup when omitting IDr

This commit is contained in:
Martin Willi
2008-03-19 10:08:59 +00:00
parent 081ae2eb61
commit 3c448f019b
2 changed files with 18 additions and 3 deletions
+5
View File
@@ -216,7 +216,12 @@ static peer_cfg_t *get_peer_cfg(private_backend_manager_t *this,
my_candidate = current->get_my_id(current);
other_candidate = current->get_other_id(current);
/* own ID may have wildcards in both, config and request (missing IDr) */
m1 = my_candidate->matches(my_candidate, me);
if (!m1)
{
m1 = me->matches(me, my_candidate);
}
m2 = other->matches(other, other_candidate);
sum = m1 + m2;
+13 -3
View File
@@ -1287,9 +1287,19 @@ static void peer_data_destroy(peer_data_t *data)
*/
static bool peer_filter(peer_data_t *data, peer_cfg_t **in, peer_cfg_t **out)
{
if ((!data->me || data->me->matches(data->me, (*in)->get_my_id(*in))) &&
(!data->other || data->other->matches(data->other, (*in)->get_other_id(*in))))
bool match_me = FALSE, match_other = FALSE;
identification_t *me, *other;
me = (*in)->get_my_id(*in);
other = (*in)->get_other_id(*in);
/* own ID may have wildcards in data (no IDr payload) or in config */
match_me = (!data->me || data->me->matches(data->me, me) ||
me->matches(me, data->me));
/* others ID has wildcards in config only */
match_other = (!data->other || data->other->matches(data->other, other));
if (match_me && match_other)
{
*out = *in;
return TRUE;