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.

43 lines
959 B

  1. //#--------------------------------------------------------------
  2. //
  3. // File: packetsender.h
  4. //
  5. // Synopsis: This file holds the declarations of the
  6. // CPacketSender 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 _PACKETSENDER_H_
  16. #define _PACKETSENDER_H_
  17. #include "packetio.h"
  18. #include "packetradius.h"
  19. #include "radcommon.h"
  20. class CPacketSender : public CPacketIo
  21. {
  22. public:
  23. //
  24. // send packet to the Transport component
  25. //
  26. HRESULT SendPacket (
  27. /*[in]*/ CPacketRadius *pCPacketRadius
  28. );
  29. //
  30. // constructor
  31. //
  32. CPacketSender(VOID);
  33. //
  34. // destructor
  35. //
  36. virtual ~CPacketSender(VOID);
  37. };
  38. #endif // infndef _PACKETRECEIVER_H_