search for: sauthservaddress

Displaying 2 results from an estimated 2 matches for "sauthservaddress".

2001 Mar 13
0
[PATCH] openssh 2.5.1p2 TIS authserv support
..._HACK_MSG" diff -urN openssh-2.5.1p2/servconf.c openssh-2.5.1p2-tis/servconf.c --- openssh-2.5.1p2/servconf.c Thu Feb 15 04:08:27 2001 +++ openssh-2.5.1p2-tis/servconf.c Fri Mar 9 11:12:14 2001 @@ -206,6 +209,9 @@ #ifdef AFS sKerberosTgtPassing, sAFSTokenPassing, #endif +#ifdef TIS_AUTH + sAuthservAddress, +#endif sChallengeResponseAuthentication, sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress, sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset, @@ -246,6 +252,9 @@ { "kerberostgtpassing", sKerberosTgtPassing }, { "afstokenpassing", sAFS...
2000 Dec 07
1
[PATCH] tis authserv support
...; +#elif TIS_AUTH + if (options->tis_authentication == -1) + options->tis_authentication = 1; #endif if (options->permit_empty_passwd == -1) options->permit_empty_passwd = 0; @@ -188,6 +194,9 @@ #endif #ifdef SKEY sSkeyAuthentication, +#elif TIS_AUTH + sTISAuthentication, + sAuthservAddress, #endif sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress, sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset, @@ -230,6 +239,9 @@ { "kbdinteractiveauthentication", sKbdInteractiveAuthentication }, #ifdef SKEY { "skeyauthentication", sSke...