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.
|
|
/*********************************************************
Header: staticshowlist.h
* Purpose: Defining structures and prototypes for statiadd.cpp.
* Developers Name: surya
* History:
* Date Author Comments 21th Aug 2001 surya Initial Version. * <creation> <author>
* <modification> <author> <comments, references to code sections, in case of bug fixes>
*********************************************************/
#ifndef _STATICSHOWLIST_H_
#define _STATICSHOWLIST_H_
extern BOOL IsDomainMember( IN LPTSTR pszMachine );
DWORD PrintPolicyList( IN PIPSEC_POLICY_DATA pPolicy, IN BOOL bVerb, IN BOOL bAssigned, IN BOOL bWide );
DWORD PrintRuleList( IN PIPSEC_NFA_DATA pIpsecNFAData, IN BOOL bVerb, IN BOOL bWide );
VOID PrintNegPolDataList( IN PIPSEC_NEGPOL_DATA pIpsecNegPolData, IN BOOL bVerb, IN BOOL bWide );
VOID PrintAlgoInfoList( IN PIPSEC_ALGO_INFO Algos, IN DWORD dwNumAlgos );
VOID PrintLifeTimeList( IN LIFETIME LifeTime );
VOID PrintAuthMethodsList( IN PIPSEC_AUTH_METHOD pIpsecAuthData );
DWORD PrintFilterDataList( IN PIPSEC_FILTER_DATA pIpsecFilterData, IN BOOL bVerb, IN BOOL bResolveDNS, IN BOOL bWide );
DWORD PrintFilterSpecList( IN PIPSEC_FILTER_SPEC pIpsecFilterSpec, IN BOOL bResolveDNS, IN BOOL bWide );
DWORD PrintResolveDNS( LPWSTR pszDNSName );
VOID PrintProtocolNameList( DWORD dwProtocol );
VOID PrintISAKMPDataList( IN PIPSEC_ISAKMP_DATA pIpsecISAKMPData );
VOID PrintISAKAMPSecurityMethodsList( IN CRYPTO_BUNDLE SecurityMethods );
VOID PrintGPOList( IN PGPO pGPO );
VOID PrintIPAddrList( IN DWORD dwAddr );
DWORD PrintStorageInfoList( IN BOOL bDeleteAll );
VOID PrintIPAddrDNS( IN DWORD dwAddr ); #endif //_STATICSHOWLIST_H_
|