2.2.1.2.91 DHCP_FILTER_GLOBAL_INFO

The DHCP_FILTER_GLOBAL_INFO structure contains information regarding enabling/disabling the allow and deny filter lists.

 typedef struct _DHCP_FILTER_GLOBAL_INFO {
   BOOL EnforceAllowList;
   BOOL EnforceDenyList;
 } DHCP_FILTER_GLOBAL_INFO,
  *LPDHCP_FILTER_GLOBAL_INFO;

EnforceAllowList: This is of type BOOL and specifies whether the allow list is enabled or disabled.

BOOL

MEANING

TRUE

1

The allow list is enabled.

FALSE

0

The allow list is disabled.

EnforceDenyList: This is of type BOOL and specifies whether the deny list is enabled or disabled.

BOOL

MEANING

TRUE

1

The deny list is enabled.

FALSE

0

The deny list is disabled.