Lines Matching refs:idlist
247 typedef struct idlist Idlist;
258 TAILQ_HEAD(idlist, identity);
270 struct idlist keys;
628 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { in input_userauth_pk_ok()
1306 struct idlist agent, files, *preferred; in pubkey_prepare()
1310 struct ssh_identitylist *idlist; in pubkey_prepare() local
1350 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) { in pubkey_prepare()
1356 for (j = 0; j < idlist->nkeys; j++) { in pubkey_prepare()
1363 if (sshkey_equal(idlist->keys[j], id->key)) { in pubkey_prepare()
1374 id->key = idlist->keys[j]; in pubkey_prepare()
1375 id->filename = idlist->comments[j]; in pubkey_prepare()
1376 idlist->keys[j] = NULL; in pubkey_prepare()
1377 idlist->comments[j] = NULL; in pubkey_prepare()
1382 ssh_free_identitylist(idlist); in pubkey_prepare()