HTTP_FILTER_URL_MAP (Compact 2013)
3/26/2014
This structure contains a physical mapping for the server to make to the specified URL. This structure is pointed to by the pvNotification parameter in the HttpFilterProc function when the NotificationType parameter is SF_NOTIFY_URL_MAP. Filters can modify the physical path in place.
Syntax
typedef struct _HTTP_FILTER_URL_MAP{
const CHAR* pszURL;
CHAR* pszPhysicalPath;
DWORD cbPathBuff;
} HTTP_FILTER_URL_MAP, *PHTTP_FILTER_URL_MAP;
Members
- pszURL
Pointer to the URL that is being mapped to a physical path.
- pszPhysicalPath
Pointer to the buffer in which the physical path is stored.
- cbPathBuff
Size of the buffer pointed to by pszPhysicalPath.
Requirements
Header |
httpfilt.h |