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.

59 lines
1.2 KiB

  1. //#--------------------------------------------------------------
  2. //
  3. // File: procresponse.h
  4. //
  5. // Synopsis: This file holds the declarations of the
  6. // CProcAcctReq class
  7. //
  8. //
  9. // History: 10/20/97 MKarki Created
  10. //
  11. // Copyright (C) 1997-98 Microsoft Corporation
  12. // All rights reserved.
  13. //
  14. //----------------------------------------------------------------
  15. #ifndef _PROCRESPONSE_H_
  16. #define _PROCRESPONSE_H_
  17. #include "packetradius.h"
  18. #include "packetsender.h"
  19. #include "hashmd5.h"
  20. class CPreValidator;
  21. class CProcResponse
  22. {
  23. public:
  24. //
  25. // initializes the CProcResponse class object
  26. //
  27. BOOL Init (
  28. /*[in]*/ CPreValidator *pPreValidator,
  29. /*[in]*/ CPacketSender *pCPacketSender
  30. );
  31. //
  32. // process out bound RADIUS response packet
  33. //
  34. HRESULT ProcessOutPacket (
  35. /*[in]*/ CPacketRadius *pCPacketRadius
  36. );
  37. //
  38. // constructor
  39. //
  40. CProcResponse();
  41. //
  42. // destructor
  43. //
  44. virtual ~CProcResponse();
  45. private:
  46. CPreValidator *m_pCPreValidator;
  47. CPacketSender *m_pCPacketSender;
  48. };
  49. #endif // ifndef _PROCREPSONSE_H_