ref: 0a460e1722c50e31653359f8a86fe0b606d2b513
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, };