Microsoft Internet Security and Acceleration Server 2000

IFWXConnection::AttachDataFilterWithDestination Method

Attaches a data filter to this connection. The data filter is associated with a remote destination.

HRESULT AttachDataFilterWithDestination(
  IFWXDataFilter *piDataFilter,
  DataFilterPriorityClass PriorityClass,
  IUnknown *punkFilterContext,
  LPSOCKADDR ExternalAddress,
  INT ExternalAddressLength
);

Parameters

piDataFilter
[in] Pointer to the IFWXDataFilter interface on the data filter to use with this connection.
PriorityClass
[in] Priority class for the data filter. This determines the position of the data filter in relation to other data filters that may be attached to the connection. This parameter is a value from the FwxDataFilterPriorityClass enumeration.
punkFilterContext
[in] Pointer to the interface to use to pass context information to the data filter. This interface is passed to the IFWXDataFilter::SetSockets method. This parameter can be NULL.
ExternalAddress
[in] Pointer to a sockaddr structure that contains the address of the peer of UDP datagrams for which the data filter is installed.

The data filter receives all datagrams sent through the connection but is removed if and when the service causes a destination to expire.

ExternalAddressLength
[in] Length, in bytes, of the ExternalAddress parameter.

Remarks

This method must be called only in the context of the IFWXSessionFilter::FirewallEventHandler method while handling an event of type fwx_Udp_Destination. This method would be used when you want the filter to attach only to data from a specific destination, even if the connection is not destination specific, as is the case for UDP connections.

The data filter will receive all of the packets on the connection.

The data filter will be detached from the connection automatically if the UDP destination expires.