2.2.12 FW_PORT_RANGE

This structure represents a range of ports. Ports are 16-bit unsigned values used in TCP and UDP protocols.

 typedef struct _tag_FW_PORT_RANGE {
   unsigned short wBegin;
   unsigned short wEnd;
 } FW_PORT_RANGE,
  *PFW_PORT_RANGE;

wBegin: This field specifies the first port included in the range defined.

wEnd: This field specifies the last port included in the range defined.

Valid FW_PORT_RANGE structures MUST have a wBegin value less than or equal to the wEnd value. In this protocol, wBegin is equal to wEnd.