Displaying 1 result from an estimated 1 matches for "auth_oth".
Did you mean:
auth_both
2000 Aug 04
0
Combining RSA host authentication with another method
...sh-2.1.1p4.orig/auth1.c openssh-2.1.1p4/auth1.c
*** openssh-2.1.1p4.orig/auth1.c Sat Jul 8 01:44:14 2000
--- openssh-2.1.1p4/auth1.c Fri Aug 4 11:04:57 2000
***************
*** 31,36 ****
--- 31,40 ----
extern char **saved_argv;
#endif /* HAVE_OSF_SIA */
+ #define AUTH_RSA_HOST 1
+ #define AUTH_OTHER 2
+ #define AUTH_BOTH (AUTH_RSA_HOST|AUTH_OTHER)
+
/*
* convert ssh auth msg type into description
*/
***************
*** 150,155 ****
--- 154,160 ----
unsigned int ulen;
int type = 0;
void (*authlog) (const char *fmt,...) = verbose;
+ int authenticated_so_far = 0;
/* I...