Microsoft Internet Security and Acceleration Server 2004 SDK

WPX_FILTER_ROUTE

The ISA Server Web proxy includes a pointer to the WPX_FILTER_ROUTE structure when it forwards the request to the Web server. If your filter should be notified for this event, it must register to receive SF_NOTIFY_ROUTING notifications. For more information about the types of event notifications that are sent to Web filters, see Event Notifications.

typedef struct _WPX_FILTER_ROUTE {
CHAR* pszHost;
DWORD cbInHost;
WORD wPort; } WPX_FILTER_ROUTE,
*PWPX_FILTER_ROUTE;

Members

pszHost
Null-terminated string that specifies the host name or IP address.
cbInHost
The size of the buffer pointed to by pszHost.
wPort
The port for the host.

Remarks

The SF_NOTIFY_ROUTING notification is received each time a request is forwarded to a Web server or upstream proxy. Use this structure to change the host or port to which ISA Server will forward the request.

Requirements

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

See Also

Notification Structures