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.

50 lines
818 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: kpkdc.h
  8. //
  9. // Contents: prototypes for routines for communicating with the kdc
  10. //
  11. // History: 10-Jul-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #include "kpcommon.h"
  15. #include "kpcontext.h"
  16. #ifndef __KPKDC_H__
  17. #define __KPKDC_H__
  18. BOOL
  19. KpInitWinsock(
  20. VOID
  21. );
  22. VOID
  23. KpCleanupWinsock(
  24. VOID
  25. );
  26. VOID
  27. KpKdcRead(
  28. PKPCONTEXT pContext
  29. );
  30. VOID
  31. KpKdcWrite(
  32. PKPCONTEXT pContext
  33. );
  34. BOOL
  35. KpKdcReadDone(
  36. PKPCONTEXT pContext
  37. );
  38. BOOL
  39. KpCalcLength(
  40. PKPCONTEXT pContext
  41. );
  42. #endif // __KPKDC_H__