HSE_SEND_HEADER_EX_INFO (Compact 2013)

3/26/2014

This structure contains connection information, including a value to indicate if the connection being used to service the current request should be kept active for further processing. This structure is used with the HSE_REQ_SEND_RESPONSE_HEADER_EX request type for the ServerSupportFunction (ISAPI Extensions).

Syntax

typedef struct _HSE_SEND_HEADER_EX_INFO{
  LPCSTR pszStatus;
  LPCSTR pszHeader;
  DWORD cchStatus;
  DWORD cchHeader;
  BOOL fKeepConn;
} HSE_SEND_HEADER_EX_INFO, *LPHSE_SEND_HEADER_EX_INFO;

Members

  • pszStatus
    Pointer to the status of the current request.
  • pszHeader
    Pointer to the header to return.
  • cchStatus
    Number of characters in the status code.
  • cchHeader
    Number of characters in the header.
  • fKeepConn
    TRUE if the connection used to process the request should remain active, and FALSE otherwise.

Requirements

Header

httpext.h

See Also

Reference

Web Server Structures
ServerSupportFunction (ISAPI Extensions)