Home | History | Annotate | Download | only in openssh

Lines Matching refs:idlist

244 typedef struct idlist Idlist;
255 TAILQ_HEAD(idlist, identity);
267 struct idlist keys;
603 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
1191 struct idlist agent, files, *preferred;
1195 struct ssh_identitylist *idlist;
1244 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) {
1249 for (j = 0; j < idlist->nkeys; j++) {
1256 if (sshkey_equal(idlist->keys[j], id->key)) {
1266 /* XXX "steals" key/comment from idlist */
1267 id->key = idlist->keys[j];
1268 id->filename = idlist->comments[j];
1269 idlist->keys[j] = NULL;
1270 idlist->comments[j] = NULL;
1275 ssh_free_identitylist(idlist);