FWPS_CALLOUT1 structure (fwpsk.h)
The FWPS_CALLOUT1 structure defines the data that is required for a callout driver to register a callout with the filter engine.
Syntax
typedef struct FWPS_CALLOUT1_ {
GUID calloutKey;
UINT32 flags;
FWPS_CALLOUT_CLASSIFY_FN1 classifyFn;
FWPS_CALLOUT_NOTIFY_FN1 notifyFn;
FWPS_CALLOUT_FLOW_DELETE_NOTIFY_FN0 flowDeleteFn;
} FWPS_CALLOUT1;
Members
calloutKey
A callout driver-defined GUID that uniquely identifies the callout.
flags
Flags that specify callout-specific parameters. Possible flags are:
Value | Meaning |
---|---|
|
A callout driver can specify this flag when registering a callout that will be added at a layer that supports data flows. If this flag is specified, the filter engine calls the callout driver's classifyFn1 callout function only if there is a context associated with the data flow. A callout driver associates a context with a data flow by calling the FwpsFlowAssociateContext0 function. |
|
A callout driver specifies this flag to indicate that the callout driver's classifyFn1 callout function is unaffected by offloading network data processing to offload-capable network interface cards (NICs). If this flag is not specified, then offloading of network data processing is disabled for all traffic that is processed by any filters that specify the callout for the filter's action. |
|
A callout driver specifies this flag to indicate that it can receive notifications about objects and filters that are added inside a transaction. The filter engine sends the notification after the transaction is committed. |
|
A callout driver specifies this flag to indicate that it can perform dynamic stream inspection of data flows at stream level. See Stream Inspection. |
|
A callout driver specifies this flag to register itself to be called when an existing socket operation is reclassified. |
classifyFn
A pointer to the callout driver's classifyFn1 callout function. The filter engine calls this function whenever there is network data to be processed by the callout.
notifyFn
A pointer to the callout driver's notifyFn1 function. The filter engine calls this function to notify the callout driver about events that are associated with the callout.
flowDeleteFn
A pointer to the callout driver's flowDeleteFn callout function. The filter engine calls this function whenever a data flow that is being processed by the callout is terminated.
If a callout driver does not associate a context with the data flows that the callout processes, then this member should be set to NULL.
Remarks
A callout driver passes a pointer to an initialized FWPS_CALLOUT1 structure to the FwpsCalloutRegister1 function when it registers a callout with the filter engine.
A callout can set the FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW flag only for connections on which the driver is interested in performing stream inspections. This callout will be ignored on all other connections. Performance will be improved and the driver will not have to maintain unnecessary state data.
This structure is essentially identical to the previous version, FWPS_CALLOUT0. The only differences are that the members of this version store the updated versions of the callout function pointers, and additional flags are available for callout drivers to set.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available starting with Windows 7. |
Header | fwpsk.h (include Fwpsk.h) |