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.

49 lines
855 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. sspi.hxx
  5. Abstract:
  6. sspi
  7. Author:
  8. Larry Zhu (LZhu) January 1, 2002
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef SSPI_HXX
  14. #define SSPI_HXX
  15. #define SSPI_ACTION_NO_MESSAGES 0x01
  16. #define SSPI_ACTION_NO_IMPORT_EXPORT 0x02
  17. #define SSPI_ACTION_NO_IMPORT_EXPORT_MSG 0x04
  18. #define SSPI_ACTION_NO_QCA 0x08
  19. #define SSPI_ACTION_NO_CHECK_USER_DATA 0x10
  20. #define SSPI_ACTION_NO_CHECK_USER_TOKEN 0x20
  21. HRESULT
  22. DoSspiServerWork(
  23. IN PCtxtHandle phSrvCtxt,
  24. IN SOCKET ServerSocket,
  25. IN SOCKET ClientSocket
  26. );
  27. HRESULT
  28. DoSspiClientWork(
  29. IN PCtxtHandle phCliCtxt,
  30. IN SOCKET ServerSocket,
  31. IN SOCKET ClientSocket
  32. );
  33. #endif // #ifndef SSPI_HXX