IPSEC_SA_CONTEXT_CALLBACK0 callback function (fwpmu.h)

The IPSEC_SA_CONTEXT_CALLBACK0 function is used to add custom behavior to the IPsec security association (SA) context subscription process.

Syntax

IPSEC_SA_CONTEXT_CALLBACK0 IpsecSaContextCallback0;

void IpsecSaContextCallback0(
  [in, out] void *context,
  [in]      const IPSEC_SA_CONTEXT_CHANGE0 *change
)
{...}

Parameters

[in, out] context

Type: void*

Optional context pointer. It contains the value of the context parameter of the IPsecSaContextSubscribe0 function.

[in] change

Type: const IPSEC_SA_CONTEXT_CHANGE0*

The IPsec SA context information.

Return value

None

Remarks

Call IPsecSaContextSubscribe0 to register this callback function.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Target Platform Windows
Header fwpmu.h

See also

IPsecSaContextSubscribe0