Removed a simple nested function.
This commit is contained in:
parent
08adc5b518
commit
7956eb5953
@ -645,20 +645,38 @@ iterate_role_events (int (*func) ())
|
|||||||
int
|
int
|
||||||
iterate_role_sends (int (*func) ())
|
iterate_role_sends (int (*func) ())
|
||||||
{
|
{
|
||||||
int send_wrapper (Protocol p, Role r, Roledef rd, int i)
|
Protocol p;
|
||||||
|
|
||||||
|
p = sys->protocols;
|
||||||
|
while (p != NULL)
|
||||||
|
{
|
||||||
|
Role r;
|
||||||
|
|
||||||
|
r = p->roles;
|
||||||
|
while (r != NULL)
|
||||||
|
{
|
||||||
|
Roledef rd;
|
||||||
|
int index;
|
||||||
|
|
||||||
|
rd = r->roledef;
|
||||||
|
index = 0;
|
||||||
|
while (rd != NULL)
|
||||||
{
|
{
|
||||||
if (rd->type == SEND)
|
if (rd->type == SEND)
|
||||||
{
|
{
|
||||||
return func (p, r, rd, i);
|
if (!func (p, r, rd, index))
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
rd = rd->next;
|
||||||
|
}
|
||||||
|
r = r->next;
|
||||||
|
}
|
||||||
|
p = p->next;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return iterate_role_events (send_wrapper);
|
|
||||||
}
|
|
||||||
|
|
||||||
//! Create decryption role instance
|
//! Create decryption role instance
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user