You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
804 B
45 lines
804 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: ktkerb.h
|
|
//
|
|
// Contents: Kerberos Tunneller, prototypes for routines that parse
|
|
// kerb messages
|
|
//
|
|
// History: 23-Jul-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#ifndef __KTKERB_H__
|
|
#define __KTKERB_H__
|
|
|
|
#include "ktcontext.h"
|
|
|
|
BOOL
|
|
KtSetPduValue(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
BOOL
|
|
KtParseExpectedLength(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
BOOL
|
|
KtFindProxy(
|
|
PKTCONTEXT pContxet
|
|
);
|
|
|
|
VOID
|
|
KtParseKerbError(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
BOOL
|
|
KtIsAsRequest(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
#endif // __KTKERB_H__
|