Microsoft Internet Security and Acceleration Server 2004 SDK

IFWXConnection::GetExternalPeerName

The GetExternalPeerName method gets the peer name for the external socket. This method is implemented by calling the Windows Sockets (Winsock)getpeername function on the actual external socket.

HRESULT GetExternalPeerName(
  LPSOCKADDR Address,
  LPINT AddressLength
);

Parameters

Address
[out] Pointer to a sockaddr structure that receives the peer name.
AddressLength
[in, out] On input, this parameter specifies the size, in bytes, of the Address buffer. On output, it receives the size, in bytes, needed to hold the address.

Return Values

S_OK
The method succeeded.
HRESULT_FROM_WIN32(WSAEFAULT)
The name or namelen parameter is not a valid part of the user address space, or the namelen parameter is too small.
FWX_E_TERMINATING
The object is shutting down.

Remarks

When the firewall is chained to another firewall or proxy, this method returns the value for the next proxy in the chain.

Note  This method should not be called from the session event handling portion of your filter code. At that point in the code, the network connection has not been established yet, and may be denied by the application filter or by another application filter. Typically you would call this method from within one of the IFWXDataFilter methods of a data filter attached to the connection; that is, at a point when you are certain that the connection has been established.

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