Displaying 2 results from an estimated 2 matches for "tis_context".
2001 Mar 13
0
[PATCH] openssh 2.5.1p2 TIS authserv support
...SKEY
#include <skey.h>
char *
diff -urN openssh-2.5.1p2/auth.h openssh-2.5.1p2-tis/auth.h
--- openssh-2.5.1p2/auth.h Sun Feb 18 07:01:00 2001
+++ openssh-2.5.1p2-tis/auth.h Fri Mar 9 10:23:09 2001
@@ -49,6 +49,9 @@
#ifdef BSD_AUTH
auth_session_t *as;
#endif
+#ifdef TIS_AUTH
+ struct tis_context *tis;
+#endif
};
/*
diff -urN openssh-2.5.1p2/config.h.in openssh-2.5.1p2-tis/config.h.in
--- openssh-2.5.1p2/config.h.in Thu Mar 1 01:11:34 2001
+++ openssh-2.5.1p2-tis/config.h.in Fri Mar 9 11:01:48 2001
@@ -299,6 +299,8 @@
/* Needed for SCO and NeXT */
#undef BROKEN_SAVED_UIDS
+#undef...
2000 Dec 07
1
[PATCH] tis authserv support
...if
+#ifdef TIS_AUTH
+ case SSH_CMSG_AUTH_TIS_RESPONSE:
+ return "tis";
+#endif
#ifdef SKEY
case SSH_CMSG_AUTH_TIS_RESPONSE:
return "s/key";
@@ -91,6 +103,9 @@
unsigned int ulen;
int type = 0;
void (*authlog) (const char *fmt,...) = verbose;
+#ifdef TIS_AUTH
+ struct tis_context *tis = NULL;
+#endif
/* Indicate that authentication is needed. */
packet_start(SSH_SMSG_FAILURE);
@@ -267,7 +282,54 @@
xfree(password);
break;
-#ifdef SKEY
+#ifdef TIS_AUTH
+ case SSH_CMSG_AUTH_TIS:
+ debug("rcvd SSH_CMSG_AUTH_TIS");
+ if (options.tis_authentication...