Microsoft Internet Security and Acceleration Server 2004 SDK

DefaultAllowedAddressesInAllowFutureConnect Property of IFPCLowLevelSettings[C++]

FPCLowLevelSettings.DefaultAllowedAddressesInAllowFutureConnect [Visual Basic]

[C++]

The DefaultAllowedAddressesInAllowFutureConnect property gets or sets the allowed-addresses flags that will be included in the dwFlags parameter of the AllowFutureConnect method.

HRESULT get_DefaultAllowedAddressesInAllowFutureConnect(
  long* plAllowedAddresses
);

HRESULT put_DefaultAllowedAddressesInAllowFutureConnect(
  long lAllowedAddresses
);

Parameters

plAllowedAddresses
Pointer to a variable that on return receives a 32-bit integer specifying the allowed-addresses flags that will be included in the dwFlags parameter of the AllowFutureConnect method.
lAllowedAddresses
A 32-bit integer that specifies the default allowed-addresses flags that will be included in the dwFlags parameter of the AllowFutureConnect method. This parameter can be any combination of the following flags:
Value Meaning
FWX_FLAG_ALLOW_ADDRESSES_IN_CLASS_C_NETWORK If the address specified in the Address parameter of the AllowFutureConnect method is in the same class-C network as the external peer, a secondary connection to it will be allowed.
FWX_FLAG_ALLOW_ADDRESSES_IN_NETWORK If the address specified in the Address parameter is in the same network as the external peer, a secondary connection to it will be allowed.
FWX_FLAG_ALLOW_ADDRESSES_ALL A secondary connection will be allowed to any address that is specified in the Address parameter.

Return Values

These property methods return S_OK if the call is successful; otherwise, they return an error code.

Remarks

This property is read/write.

The AllowFutureConnect method uses the flags specified in this property only when the dwFlags parameter does not include any of the flags listed earlier. Otherwise, the method uses the flags passed in the dwFlags parameter.

[Visual Basic]

The DefaultAllowedAddressesInAllowFutureConnect property gets or sets the allowed-addresses flags that will be included in the dwFlags parameter of the AllowFutureConnect method.

Property DefaultAllowedAddressesInAllowFutureConnect As Long

Property Value

A 32-bit integer that specifies the default allowed-addresses flags that will be included in the dwFlags parameter of the AllowFutureConnect method. The value of this property can be any combination of the following flags:
Value Meaning
FWX_FLAG_ALLOW_ADDRESSES_IN_CLASS_C_NETWORK If the address specified in the Address parameter of the AllowFutureConnect method is in the same class-C network as the external peer, a secondary connection to it will be allowed.
FWX_FLAG_ALLOW_ADDRESSES_IN_NETWORK If the address specified in the Address parameter is in the same network as the external peer, a secondary connection to it will be allowed.
FWX_FLAG_ALLOW_ADDRESSES_ALL A secondary connection will be allowed to any address that is specified in the Address parameter.

Remarks

This property is read/write.

The AllowFutureConnect method uses the flags specified in this property only when the dwFlags parameter does not include any of the flags listed earlier. Otherwise, the method uses the flags passed in the dwFlags parameter.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCLowLevelSettings