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.
|
|
/*
Copyright (c) 1998, Microsoft Corporation, all rights reserved
Description:
History:
*/
#ifndef _RASSRVR__H_
#define _RASSRVR__H_
#include "rasiphlp_.h"
#include <mprlog.h>
#include <dns.h>
#include <dnsapi.h>
#include <dhcpcapi.h>
#include <raserror.h>
#include <malloc.h>
#include <rasman.h>
#include <llinfo.h>
#include <ddwanarp.h>
#include "helper.h"
#include "tcpreg.h"
#include "rasdhcp.h"
#include "rasstat.h"
#include "rastcp.h"
#include "rassrvr.h"
#define SERVER_HPORT 0xee170466
#define AINODE_FLAG_NOTIFY_DLL 0x00000001
#define AINODE_FLAG_ACTIVATED 0x00000002
#define AINODE_FLAG_EASYNET 0x00000004
typedef struct _ACQUIRED_IPADDR { struct _ACQUIRED_IPADDR* pNext; HPORT hPort; // For diagnostic purposes
IPADDR nboIpAddr; WCHAR* wszUserName; WCHAR* wszPortName; DWORD fFlags; // See AINODE_FLAG_*
} AINODE;
MPRADMINGETIPADDRESSFORUSER* pfnMprAdminGetIpAddressForUser = NULL; MPRADMINRELEASEIPADDRESS* pfnMprAdminReleaseIpAddress = NULL; IPADDR RasSrvrNboServerIpAddress = 0; IPADDR RasSrvrNboServerSubnetMask = 0; AINODE* RasSrvrAcquiredIpAddresses = NULL; BOOL RasSrvrRunning = FALSE; BOOL RasSrvrAdapterMapped = FALSE; MIB_SERVER_HANDLE RasSrvrHMIBServer = NULL;
WCHAR g_rgwcAdapterName[WANARP_MAX_DEVICE_NAME_LEN + 2];
extern HANDLE HelperWanArpHandle;
// This critical section controls access to the above global variables
extern CRITICAL_SECTION RasSrvrCriticalSection;
DWORD rasSrvrInitAdapterName( VOID );
AINODE* rasSrvrFindAiNode( IN IPADDR nboIpAddr, IN BOOL fRemoveFromList );
VOID rasSrvrFreeAiNode( IN AINODE* pNode );
DWORD rasSrvrSetIpAddressInRegistry( IN IPADDR nboIpAddr, IN IPADDR nboIpMask );
DWORD rasSrvrAcquireAddressEx( IN HPORT hPort, IN OUT IPADDR* pnboIpAddr, IN OUT IPADDR* pnboIpMask, OUT BOOL* pfEasyNet );
DWORD rasSrvrGetAddressForServerAdapter( VOID );
#endif // #ifndef _RASSRVR__H_
|