File: main.c

package info (click to toggle)
pykerberos 1.0%2Bsvn2455-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 240 kB
  • ctags: 105
  • sloc: ansic: 1,099; python: 206; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 543 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include "kerberosgss.h"

#include "stdio.h"

int main (int argc, char * const argv[]) {
	
	int code = 0;
	char* service = 0L;
	gss_server_state state;
	
	service = server_principal_details("http", "caldav.corp.apple.com");

	//printf("Got service principal: %s\n", result);
	
	//code = authenticate_user_krb5pwd("x", "x", "http/caldav.corp.apple.com@CALDAV.CORP.APPLE.COM", "CALDAV.CORP.APPLE.COM");

	code = authenticate_gss_server_init("http@CALDAV.CORP.APPLE.COM", &state);
	code = authenticate_gss_server_clean(&state);

    return 0;
}