Home | History | Annotate | Download | only in openssh

Lines Matching refs:agent

246 	AuthenticationConnection *ac;	/* set if agent supports key */
248 char *filename; /* comment for agent-only keys */
264 AuthenticationConnection *agent;
1178 /* the agent supports this key */
1355 * 1. agent keys that are found in the config file
1356 * 2. other agent keys
1363 Idlist agent, files, *preferred;
1369 TAILQ_INIT(&agent); /* keys from the agent */
1387 /* list of keys supported by the agent */
1394 /* agent keys from the config file are preferred */
1410 TAILQ_INSERT_TAIL(&agent, id, next);
1413 /* append remaining agent keys */
1414 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1415 TAILQ_REMOVE(&agent, id, next);
1418 authctxt->agent = ac;
1435 if (authctxt->agent != NULL)
1436 ssh_close_authentication_connection(authctxt->agent);