ref: 5ece9fb8480195b39e604a4aa32b5fa1be185e65
dir: /sys/src/cmd/ssh/authsrvpasswd.c/
#include "ssh.h"
static AuthInfo*
authsrvpasswordfn(Conn *c, Msg *m)
{
char *pass;
AuthInfo *ai;
pass = getstring(m);
ai = auth_userpasswd(c->user, pass);
free(m);
return ai;
}
Authsrv authsrvpassword =
{
SSH_AUTH_PASSWORD,
"password",
SSH_CMSG_AUTH_PASSWORD,
authsrvpasswordfn,
};