// fwpsk.h
typedef enum FWPS_CONNECTION_REDIRECT_STATE_ {
FWPS_CONNECTION_NOT_REDIRECTED,
FWPS_CONNECTION_REDIRECTED_BY_SELF,
FWPS_CONNECTION_REDIRECTED_BY_OTHER,
FWPS_CONNECTION_PREVIOUSLY_REDIRECTED_BY_SELF,
FWPS_CONNECTION_REDIRECT_STATE_MAX
} FWPS_CONNECTION_REDIRECT_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The FWPS_CONNECTION_REDIRECT_STATE enumeration type specifies the current redirection state of a connection.
FWPS_CONNECTION_NOT_REDIRECTEDThe connection was not redirected.
FWPS_CONNECTION_REDIRECTED_BY_SELFThe connection was redirected by the calling redirect handle.
FWPS_CONNECTION_REDIRECTED_BY_OTHERThe connection was redirected by a different redirect handle.
FWPS_CONNECTION_PREVIOUSLY_REDIRECTED_BY_SELFThe connection was redirected by the calling redirect handle but later redirected again by a different redirect handle.
FWPS_CONNECTION_REDIRECT_STATE_MAXThe maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.
The FWPS_CONNECTION_REDIRECT_STATE enumeration is the return type for a call to the FwpsQueryConnectionRedirectState0 function.
FwpsQueryConnectionRedirectState0