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.
 
 
 
 
 
 

66 lines
1.2 KiB

//#--------------------------------------------------------------
//
// File: packetio.h
//
// Synopsis: This file holds the declarations of the
// CPacketIo class
//
//
// History: 9/23/97 MKarki Created
//
// Copyright (C) 1997-98 Microsoft Corporation
// All rights reserved.
//
//----------------------------------------------------------------
#ifndef _PACKETIO_H_
#define _PACKETIO_H_
#include "radcommon.h"
#include "perimeter.h"
class CPacketIo : public Perimeter
{
public:
//
// start processing the packet I/O
//
virtual BOOL StartProcessing ();
//
// stop processing packet I/O
//
virtual BOOL StopProcessing ();
//
// constructor
//
CPacketIo();
//
// destructor
//
virtual ~CPacketIo();
protected:
//
// enable the processing
//
BOOL EnableProcessing (VOID);
//
// disable processing
//
BOOL DisableProcessing (VOID);
//
// check if processing is enabled
//
BOOL IsProcessingEnabled (VOID);
private:
BOOL m_bProcessData;
};
#endif // infndef _PACKETRECEIVER_H_