Click to Rate and Give Feedback
MSDN
MSDN Library
Networking
Network Protocols
HTTP Server API
 HTTP_UNKNOWN_HEADER Structure

  Switch on low bandwidth view
HTTP_UNKNOWN_HEADER Structure

The HTTP_UNKNOWN_HEADER structure contains the name and value for a header in an HTTP request or response whose name does not appear in the enumeration.

Syntax

C++
typedef struct _HTTP_UNKNOWN_HEADER {
  USHORT NameLength;
  USHORT RawValueLength;
  PCSTR  pName;
  PCSTR  pRawValue;
}HTTP_UNKNOWN_HEADER, *PHTTP_UNKNOWN_HEADER;

Members

NameLength

The size, in bytes, of the data pointed to by the pName member not counting a terminating null.

RawValueLength

The size, in bytes, of the data pointed to by the pRawValue member, in bytes.

pName

A pointer to a string of octets that specifies the header name. Use NameLength to determine the end of the string, rather than relying on a terminating null.

pRawValue

A pointer to a string of octets that specifies the values for this header. Use RawValueLength to determine the end of the string, rather than relying on a terminating null.

Requirements

Minimum supported clientWindows Vista, Windows XP with SP2
Minimum supported serverWindows Server 2003
HeaderHttp.h

See Also

HTTP Server API Version 1.0 Structures
HTTP_REQUEST_HEADERS
HTTP_RESPONSE_HEADERS
HTTP_HEADER_ID

Send comments about this topic to Microsoft

Build date: 7/9/2009

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker