Leaked source code of windows server 2003
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

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: ktkerb.h
  8. //
  9. // Contents: Kerberos Tunneller, prototypes for routines that parse
  10. // kerb messages
  11. //
  12. // History: 23-Jul-2001 t-ryanj Created
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __KTKERB_H__
  16. #define __KTKERB_H__
  17. #include "ktcontext.h"
  18. BOOL
  19. KtSetPduValue(
  20. PKTCONTEXT pContext
  21. );
  22. BOOL
  23. KtParseExpectedLength(
  24. PKTCONTEXT pContext
  25. );
  26. BOOL
  27. KtFindProxy(
  28. PKTCONTEXT pContxet
  29. );
  30. VOID
  31. KtParseKerbError(
  32. PKTCONTEXT pContext
  33. );
  34. BOOL
  35. KtIsAsRequest(
  36. PKTCONTEXT pContext
  37. );
  38. #endif // __KTKERB_H__