WSD_PROTOCOL_TYPE enumeration (wsdtypes.h)

Identifies the type of protocol supported by a port.

Syntax

typedef enum _WSD_PROTOCOL_TYPE {
  WSD_PT_NONE = 0x00,
  WSD_PT_UDP = 0x01,
  WSD_PT_HTTP = 0x02,
  WSD_PT_HTTPS = 0x04,
  WSD_PT_ALL = 0xff
} WSD_PROTOCOL_TYPE;

Constants

 
WSD_PT_NONE
Value: 0x00
No protocols supported.
WSD_PT_UDP
Value: 0x01
The UDP protocol is supported.
WSD_PT_HTTP
Value: 0x02
The HTTP protocol is supported.
WSD_PT_HTTPS
Value: 0x04
The HTTPS protocol is supported.
WSD_PT_ALL
Value: 0xff
The UDP, HTTP, and HTTPS protocols are supported.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header wsdtypes.h (include Wsdapi.h)

See also

WSD_PORT_TYPE