Microsoft Internet Security and Acceleration Server 2004 SDK

IFWXConnection::SetSocketName

The GetExternalSocketName method sets the name of the socket for the connection. Call this method only if the caller is emulating the connection.

HRESULT SetSocketName(
  LPSOCKADDR Address,
  DWORD AddressLength
);

Parameters

Address
[in] Pointer to a sockaddr structure that contains the socket address.
AddressLength
[in] Length, in bytes, of the Address parameter.

Return Values

S_OK
The method succeeded.
FWX_E_ALREADY_EXISTS
The socket is already bound.
FWX_E_INVALID_ARG
An invalid argument was provided to this method.

Remarks

On regular connections, the Microsoft Firewall service calls the getsockname Winsock function on the external socket and passes this information to the Firewall client. For an emulated connection, there is no external socket, or the external socket is known only to the filter. The filter is required to call this method and set the socket name.

When there is no connection, it is advisable to return an IP address of the Firewall service (external or internal as appropriate) because the client application may use this information to publish the address.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Wspfwext.idl.

See Also

IFWXConnection