pike.git
/
src
/
modules
/
Kerberos
/
kerberos.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Kerberos/kerberos.cmod:1:
/*
-
* $Id: kerberos.cmod,v 1.
1
2004/05/13
08
:
57
:
08
grubba Exp $
+
* $Id: kerberos.cmod,v 1.
2
2004/05/13
13
:
09
:
19
grubba Exp $
* * Kerberos support for Pike. * * 2004-05-12 Henrik Grubbström * * FIXME: Currently only minimal support, and only for Kerberos 5 (not 4). */ #include "global.h" #include "config.h" #include "svalue.h" #include "module.h" #include "interpret.h"
-
+
/* must be included last */
+
#include "module_magic.h"
+
#if defined(HAVE_KRB5_H) && defined(HAVE_LIBKRB5) #define HAVE_KRB5 #endif DECLARATIONS /* #define KRB_DEBUG */ #ifdef KRB_DEBUG #define KRB_FPRINTF(X) fprintf X
pike.git/src/modules/Kerberos/kerberos.cmod:116:
pop_n_elems(args); push_int(1); return; } } #endif /* HAVE_KRB5 */
-
PIKE
_
MODULE
_
INIT
+
void pike
_
module
_
init(void)
{ INIT; }
-
PIKE
_
MODULE
_
EXIT
+
void pike
_
module
_
exit(void)
{ EXIT; }