Lines Matching refs:idlist
260 typedef struct idlist Idlist;
271 TAILQ_HEAD(idlist, identity);
287 struct idlist keys;
680 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { in input_userauth_pk_ok()
1562 struct idlist agent, files, *preferred; in pubkey_prepare()
1566 struct ssh_identitylist *idlist; in pubkey_prepare() local
1627 } else if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) { in pubkey_prepare()
1633 for (j = 0; j < idlist->nkeys; j++) { in pubkey_prepare()
1640 if (sshkey_equal(idlist->keys[j], id->key)) { in pubkey_prepare()
1651 id->key = idlist->keys[j]; in pubkey_prepare()
1652 id->filename = idlist->comments[j]; in pubkey_prepare()
1653 idlist->keys[j] = NULL; in pubkey_prepare()
1654 idlist->comments[j] = NULL; in pubkey_prepare()
1659 ssh_free_identitylist(idlist); in pubkey_prepare()