windows-nt/Source/XPSP1/NT/net/ias/protocol/radius/valacct.h

58 lines
1.1 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
//#--------------------------------------------------------------
//
// File: valacct.h
//
// Synopsis: This file holds the declarations of the
// CValAccounting class
//
//
// History: 10/20/97 MKarki Created
//
// Copyright (C) 1997-98 Microsoft Corporation
// All rights reserved.
//
//----------------------------------------------------------------
#ifndef _VALACCT_H_
#define _VALACCT_H_
#include "packetradius.h"
#include "validator.h"
#include "hashmd5.h"
#include "sendtopipe.h"
class CValidator;
class CValAccounting : public CValidator
{
public:
//
// validates the inbound RADIUS packet
//
HRESULT ValidateInPacket(
/*[in]*/ CPacketRadius *pCPacketRadius
);
//
// constructor
//
CValAccounting();
//
// destructor
//
virtual ~CValAccounting();
private:
//
// authenticates the inbound RADIUS packet
//
HRESULT AuthenticatePacket (
/*[in]*/ CPacketRadius *pCPacketRadius
);
};
#endif // ifndef _VALACCT_H_