Home
last modified time | relevance | path

Searched refs:sc_pkeys (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/usr.sbin/relayd/
Dconfig.c90 if ((env->sc_pkeys = in config_init()
91 calloc(1, sizeof(*env->sc_pkeys))) == NULL) in config_init()
93 TAILQ_INIT(env->sc_pkeys); in config_init()
171 if (what & CONFIG_RELAYS && env->sc_pkeys != NULL) { in config_purge()
172 while ((pkey = TAILQ_FIRST(env->sc_pkeys)) != NULL) { in config_purge()
173 TAILQ_REMOVE(env->sc_pkeys, pkey, pkey_entry); in config_purge()
Drelayd.c1234 TAILQ_FOREACH(pkey, env->sc_pkeys, pkey_entry) in pkey_find()
1245 if (env->sc_pkeys == NULL) in pkey_add()
1258 TAILQ_INSERT_TAIL(env->sc_pkeys, ca_pkey, pkey_entry); in pkey_add()
Drelayd.h1116 struct ca_pkeylist *sc_pkeys; member