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.
53 lines
1.1 KiB
53 lines
1.1 KiB
//#--------------------------------------------------------------
|
|
//
|
|
// File: proxyinfo.h
|
|
//
|
|
// Synopsis: This file holds the declarations of the
|
|
// proxyinfo class
|
|
//
|
|
//
|
|
// History: 9/23/97 MKarki Created
|
|
//
|
|
// Copyright (C) 1997-98 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//----------------------------------------------------------------
|
|
|
|
#ifndef _PROXYINFO_H_
|
|
#define _PROXYINFO_H_
|
|
|
|
#include "radpkt.h"
|
|
|
|
|
|
class CProxyInfo
|
|
{
|
|
public:
|
|
|
|
CProxyInfo();
|
|
|
|
virtual ~CProxyInfo();
|
|
|
|
BOOL Init (
|
|
PBYTE pbyClientAuthenticator,
|
|
PBYTE pbyProxyAuthentciator,
|
|
DWORD dwClientIPAddress,
|
|
WORD wClientPort
|
|
);
|
|
BOOL GetProxyReqAuthenticator (
|
|
PBYTE pbyProxyReqAuthenticator
|
|
);
|
|
|
|
private:
|
|
|
|
BYTE m_ProxyReqAuthenticator[AUTHENTICATOR_SIZE];
|
|
|
|
BYTE m_ClientReqAuthenticator[AUTHENTICATOR_SIZE];
|
|
|
|
DWORD m_dwClientIPAddress;
|
|
|
|
WORD m_wClientPort;
|
|
|
|
|
|
};
|
|
|
|
#endif // ifndef _PROXYINFO_H_
|