Home | History | Annotate | Download | only in racoon

Lines Matching defs:reply

198 		    "Xauth reply but peer did not declare "
205 "Xauth reply while Xauth state is %d\n", xst->status);
367 "Delayed Xauth reply: phase 1 no longer exists.\n");
584 struct pam_response *reply = NULL;
586 if ((reply = racoon_malloc(sizeof(*reply) * msg_count)) == NULL)
588 bzero(reply, sizeof(*reply) * msg_count);
594 reply[i].resp_retcode = PAM_SUCCESS;
595 if ((reply[i].resp = strdup(PAM_usr)) == NULL) {
604 reply[i].resp_retcode = PAM_SUCCESS;
605 if ((reply[i].resp = strdup(PAM_pwd)) == NULL) {
614 reply[i].resp_retcode = PAM_SUCCESS;
615 reply[i].resp = NULL;
619 if (reply != NULL)
620 racoon_free(reply);
626 if (reply != NULL)
627 *rsp = reply;