Lines Matching defs:c

2  * validator/autotrust.c - RFC5011 trust anchor management for unbound.
4 * Copyright (c) 2009, NLnet Labs. All rights reserved.
72 static void do_revoked(struct module_env* env, struct autr_ta* anchor, int* c);
1733 do_newkey(struct module_env* env, struct autr_ta* anchor, int* c)
1736 set_trustanchor_state(env, anchor, c, AUTR_STATE_ADDPEND);
1741 do_addtime(struct module_env* env, struct autr_ta* anchor, int* c)
1752 set_trustanchor_state(env, anchor, c, AUTR_STATE_VALID);
1763 do_remtime(struct module_env* env, struct autr_ta* anchor, int* c)
1769 set_trustanchor_state(env, anchor, c, AUTR_STATE_REMOVED);
1775 do_keyrem(struct module_env* env, struct autr_ta* anchor, int* c)
1778 set_trustanchor_state(env, anchor, c, AUTR_STATE_START);
1781 set_trustanchor_state(env, anchor, c, AUTR_STATE_MISSING);
1786 do_keypres(struct module_env* env, struct autr_ta* anchor, int* c)
1789 set_trustanchor_state(env, anchor, c, AUTR_STATE_VALID);
1794 do_revoked(struct module_env* env, struct autr_ta* anchor, int* c)
1797 set_trustanchor_state(env, anchor, c, AUTR_STATE_REVOKED);
1806 anchor_state_update(struct module_env* env, struct autr_ta* anchor, int* c)
1814 do_newkey(env, anchor, c);
1820 do_keyrem(env, anchor, c);
1822 else do_addtime(env, anchor, c);
1828 do_revoked(env, anchor, c);
1831 do_keyrem(env, anchor, c);
1834 reset_holddown(env, anchor, c);
1841 do_revoked(env, anchor, c);
1844 do_keypres(env, anchor, c);
1849 reset_holddown(env, anchor, c);
1851 else do_remtime(env, anchor, c);
1971 autr_holddown_exceed(struct module_env* env, struct trust_anchor* tp, int* c)
1977 do_addtime(env, anchor, c);