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
43 lines
959 B
//#--------------------------------------------------------------
|
|
//
|
|
// File: packetsender.h
|
|
//
|
|
// Synopsis: This file holds the declarations of the
|
|
// CPacketSender class
|
|
//
|
|
//
|
|
// History: 9/23/97 MKarki Created
|
|
//
|
|
// Copyright (C) 1997-98 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//----------------------------------------------------------------
|
|
#ifndef _PACKETSENDER_H_
|
|
#define _PACKETSENDER_H_
|
|
|
|
#include "packetio.h"
|
|
#include "packetradius.h"
|
|
#include "radcommon.h"
|
|
|
|
class CPacketSender : public CPacketIo
|
|
{
|
|
public:
|
|
|
|
//
|
|
// send packet to the Transport component
|
|
//
|
|
HRESULT SendPacket (
|
|
/*[in]*/ CPacketRadius *pCPacketRadius
|
|
);
|
|
//
|
|
// constructor
|
|
//
|
|
CPacketSender(VOID);
|
|
|
|
//
|
|
// destructor
|
|
//
|
|
virtual ~CPacketSender(VOID);
|
|
};
|
|
|
|
#endif // infndef _PACKETRECEIVER_H_
|