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.

39 lines
666 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: kthttp.cxx
  8. //
  9. // Contents: Kerberos Tunneller, http communication prototypes
  10. //
  11. // History: 28-Jun-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #ifndef __KTHTTP_H__
  15. #define __KTHTTP_H__
  16. #include "ktcontext.h"
  17. BOOL
  18. KtInitHttp(
  19. VOID
  20. );
  21. VOID
  22. KtCleanupHttp(
  23. VOID
  24. );
  25. BOOL
  26. KtHttpWrite(
  27. PKTCONTEXT pContext
  28. );
  29. BOOL
  30. KtHttpRead(
  31. PKTCONTEXT pContext
  32. );
  33. #endif // __KTHTTP_H__