HomeSort by: relevance | last modified time | path
    Searched refs:loginmsg (Results 1 - 10 of 10) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
auth-passwd.c 63 extern struct sshbuf *loginmsg;
131 if ((r = sshbuf_putf(loginmsg,
138 if ((r = sshbuf_putf(loginmsg,
sshlogin.c 78 extern struct sshbuf *loginmsg;
162 r = sshbuf_putf(loginmsg, "Last login: %s\r\n",
165 r = sshbuf_putf(loginmsg, "Last login: %s from %s\r\n",
auth2.c 69 extern struct sshbuf *loginmsg;
412 if (sshbuf_len(loginmsg) > 0) {
413 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
417 (const char *)sshbuf_ptr(loginmsg));
auth-pam.c 125 extern struct sshbuf *loginmsg;
664 if ((r = sshbuf_putf(loginmsg, "%s\n",
940 if ((r = sshbuf_put(loginmsg, **prompts,
1345 if ((r = sshbuf_putf(loginmsg, "%s\n",
sshd-auth.c 171 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf
740 if ((loginmsg = sshbuf_new()) == NULL)
741 fatal("sshbuf_new loginmsg failed");
sshd-session.c 215 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf
415 sshbuf_reset(loginmsg);
1230 if ((loginmsg = sshbuf_new()) == NULL)
1231 fatal("sshbuf_new loginmsg failed");
session.c 128 extern struct sshbuf *loginmsg;
216 if (sshbuf_len(loginmsg) == 0)
218 if ((r = sshbuf_put_u8(loginmsg, 0)) != 0)
220 printf("%s", (const char *)sshbuf_ptr(loginmsg));
221 sshbuf_reset(loginmsg);
665 * Clear loginmsg: it's the child's responsibility to display
669 sshbuf_reset(loginmsg);
monitor_wrap.c 89 extern struct sshbuf *loginmsg;
685 if ((r = sshbuf_put(loginmsg, msg, strlen(msg))) != 0)
686 fatal_fr(r, "put loginmsg");
759 (r = sshbuf_put(loginmsg, msg, msglen)) != 0)
monitor.c 102 extern struct sshbuf *loginmsg;
1167 (r = sshbuf_put_stringb(m, loginmsg)) != 0)
1764 if ((r = sshbuf_put_stringb(m, loginmsg)) != 0)
1765 fatal_fr(r, "assemble loginmsg");
1766 sshbuf_reset(loginmsg);
sshd.c 202 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf

Completed in 92 milliseconds