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.

52 lines
898 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. sspicli.hxx
  5. Abstract:
  6. sspicli
  7. Author:
  8. Larry Zhu (LZhu) January 1, 2002
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef SSPI_CLI_HXX
  14. #define SSPI_CLI_HXX
  15. #include "sspi.hxx"
  16. class TSspiClientParam : public TSspiClientThreadParam {
  17. public:
  18. TSspiClientParam(
  19. VOID
  20. );
  21. OPTIONAL PSTR pszTargetName;
  22. OPTIONAL PSTR pszPrincipal;
  23. OPTIONAL LUID* pCredLogonID;
  24. PSTR pszPackageName;
  25. OPTIONAL VOID* pAuthData;
  26. ULONG ClientFlags;
  27. ULONG TargetDataRep; // SECURITY_NATIVE_DREP
  28. ULONG ClientActionFlags;
  29. ULONG ProcessIdTokenUsedByClient;
  30. PCSTR pszS4uClientUpn;
  31. PCSTR pszS4uClientRealm;
  32. ULONG S4u2SelfFlags;
  33. private:
  34. NO_COPY(TSspiClientParam);
  35. };
  36. #endif // #ifndef SSPI_CLI_HXX