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.

53 lines
1.1 KiB

  1. //#--------------------------------------------------------------
  2. //
  3. // File: proxyinfo.h
  4. //
  5. // Synopsis: This file holds the declarations of the
  6. // proxyinfo class
  7. //
  8. //
  9. // History: 9/23/97 MKarki Created
  10. //
  11. // Copyright (C) 1997-98 Microsoft Corporation
  12. // All rights reserved.
  13. //
  14. //----------------------------------------------------------------
  15. #ifndef _PROXYINFO_H_
  16. #define _PROXYINFO_H_
  17. #include "radpkt.h"
  18. class CProxyInfo
  19. {
  20. public:
  21. CProxyInfo();
  22. virtual ~CProxyInfo();
  23. BOOL Init (
  24. PBYTE pbyClientAuthenticator,
  25. PBYTE pbyProxyAuthentciator,
  26. DWORD dwClientIPAddress,
  27. WORD wClientPort
  28. );
  29. BOOL GetProxyReqAuthenticator (
  30. PBYTE pbyProxyReqAuthenticator
  31. );
  32. private:
  33. BYTE m_ProxyReqAuthenticator[AUTHENTICATOR_SIZE];
  34. BYTE m_ClientReqAuthenticator[AUTHENTICATOR_SIZE];
  35. DWORD m_dwClientIPAddress;
  36. WORD m_wClientPort;
  37. };
  38. #endif // ifndef _PROXYINFO_H_