mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-31 22:21:33 +00:00
efb4afe026
- [auth.c auth.h servconf.c servconf.h serverloop.c session.c] [session.h ssh.h sshd.c README.openssh2] ssh2 server side, see README.openssh2; enable with 'sshd -2' - [channels.c] no adjust after close - [sshd.c compat.c ] interop w/ latest ssh.com windows client.
11 lines
138 B
C
11 lines
138 B
C
#ifndef AUTH_H
|
|
#define AUTH_H
|
|
|
|
void do_authentication(void);
|
|
void do_authentication2(void);
|
|
|
|
struct passwd *
|
|
auth_get_user(void);
|
|
|
|
#endif
|