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 77 extern struct sshbuf *loginmsg;
161 r = sshbuf_putf(loginmsg, "Last login: %s\r\n",
164 r = sshbuf_putf(loginmsg, "Last login: %s from %s\r\n",
auth2.c 70 extern struct sshbuf *loginmsg;
413 if (sshbuf_len(loginmsg) > 0) {
414 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
418 (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 167 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf
726 if ((loginmsg = sshbuf_new()) == NULL)
727 fatal("sshbuf_new loginmsg failed");
sshd-session.c 215 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf
415 sshbuf_reset(loginmsg);
1237 if ((loginmsg = sshbuf_new()) == NULL)
1238 fatal("sshbuf_new loginmsg failed");
session.c 128 extern struct sshbuf *loginmsg;
215 if (sshbuf_len(loginmsg) == 0)
217 if ((r = sshbuf_put_u8(loginmsg, 0)) != 0)
219 printf("%s", (const char *)sshbuf_ptr(loginmsg));
220 sshbuf_reset(loginmsg);
664 * Clear loginmsg: it's the child's responsibility to display
668 sshbuf_reset(loginmsg);
monitor_wrap.c 88 extern struct sshbuf *loginmsg;
664 if ((r = sshbuf_put(loginmsg, msg, strlen(msg))) != 0)
665 fatal_fr(r, "put loginmsg");
738 (r = sshbuf_put(loginmsg, msg, msglen)) != 0)
monitor.c 101 extern struct sshbuf *loginmsg;
1139 (r = sshbuf_put_stringb(m, loginmsg)) != 0)
1736 if ((r = sshbuf_put_stringb(m, loginmsg)) != 0)
1737 fatal_fr(r, "assemble loginmsg");
1738 sshbuf_reset(loginmsg);
sshd.c 204 struct sshbuf *loginmsg; variable in typeref:struct:sshbuf

Completed in 32 milliseconds