HTTP_FILTER_URL_MAP

typedef struct _HTTP_FILTER_URL_MAP

    const CHAR *    pszURL;

    CHAR *          pszPhysicalPath;

    DWORD           cbPathBuff;

} HTTP_FILTER_URL_MAP, *PHTTP_FILTER_URL_MAP;

 

Members

pszURL

[in] A pointer to the URL that is being mapped to a physical path.

pszPhysicalPath

[in/out] A pointer to the buffer where the physical path is stored.

cbPathBuff

[in] The size of the buffer pointed to by pszPhysicalPath.

 

Remarks

When the server is about to map the specified URL to a physical path, this structure is pointed to by the pvNotification in the HttpFilterProc when notificationType is SF_NOTIFY_URL_MAP. Filters can modify the physical path in place.

See Also

HttpFilterProc