aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb4/unix_glue.c
blob: eeafdb9d7eaed9410b18275f90d4535b6b445b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * unix_glue.c
 * 
 * Glue code for pasting Kerberos into the Unix environment.
 *
 * Originally written by John Gilmore, Cygnus Support, May '94.
 * Public Domain.
 */

#include "krb.h"
#include <sys/time.h>

/* Start and end Kerberos library access.  On Unix, this is a No-op.  */
int INTERFACE
krb_start_session (x)
	char *x;
{
	return KSUCCESS;
}

int INTERFACE
krb_end_session (x)
	char *x;
{
	return KSUCCESS;
}

char FAR * INTERFACE
krb_get_default_user ()
{
	return 0;		/* FIXME */
}

int INTERFACE
krb_set_default_user (x)
	char *x;
{
	return KFAILURE;	/* FIXME */
}