HTTP_FILTER_URL_MAP Structure
Visual Studio 2005
This structure is pointed to by the pvNotification in the CHttpFilter::HttpFilterProc when the NotificationType is SF_NOTIFY_URL_MAP, which indicates when the server is about to map the specified URL to a physical path. Filters can modify the physical path in place.
typedef struct _HTTP_FILTER_URL_MAP
{
const CHAR * pszURL; //IN
CHAR * pszPhysicalPath; //IN/OUT
DWORD cbPathBuff; //IN
} HTTP_FILTER_URL_MAP, *PHTTP_FILTER_URL_MAP;
Parameters
- pszURL
-
Pointer to the URL that is being mapped to a physical path.
- pszPhysicalPath
-
Pointer to the buffer where the physical path is stored.
- cbPathBuff
-
Size of the buffer pointed to by pszPhysicalPath.