summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-12-20 00:28:22 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-12-20 00:28:22 +0000
commite460c46c74c37124032c2663c68965fd58f6a528 (patch)
treedb81da633ce78699799ccb16de43ddd05a84b326
parente825b1d240d0a46568764772a231a5526e8d77d4 (diff)
merge XFree86 RC2 (4.3.99.902) from vendor branchXORG-RELEASE-1-BASEXEVIE-MERGEXEVIE-BASEXINERAMA_2XEVIE
-rw-r--r--Wrap.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/Wrap.h b/Wrap.h
index b9ec1cf..6b56931 100644
--- a/Wrap.h
+++ b/Wrap.h
@@ -1,12 +1,21 @@
+/* $XdotOrg: Wrap.h,v 1.3 2000/08/17 19:45:50 cpqbld Exp $ */
/* $Xorg: Wrap.h,v 1.3 2000/08/17 19:45:50 cpqbld Exp $ */
/*
* header file for compatibility with something useful
*/
-/* $XFree86: xc/lib/Xdmcp/Wrap.h,v 1.3 2001/01/17 19:42:44 dawes Exp $ */
+/* $XFree86: xc/lib/Xdmcp/Wrap.h,v 1.4 2003/12/19 02:05:38 dawes Exp $ */
typedef unsigned char auth_cblock[8]; /* block size */
typedef struct auth_ks_struct { auth_cblock _; } auth_wrapper_schedule[16];
extern void _XdmcpWrapperToOddParity (unsigned char *in, unsigned char *out);
+
+#ifdef HASXDMAUTH
+/* They're really void but that would mean changing Wraphelp.c as well
+ which isnt in version control. */
+extern int _XdmcpAuthSetup (auth_cblock key, auth_wrapper_schedule schedule);
+extern int _XdmcpAuthDoIt (auth_cblock input, auth_cblock output,
+ auth_wrapper_schedule schedule, int edflag);
+#endif