The Virtual Interface Architecture

Synopsis
VIP_RETURN VipErrorCallback( IN VIP_NIC_HANDLE NicHandle, IN VIP_PVOID Context, IN void(*Handler)( IN VIP_PVOID Context, IN VIP_ERROR_DESCRIPTOR *ErrorDesc ) ) <a name="384"></a><a name="wbp11AppaP980"></a>
Parameters
| NicHandle : | Handle of the NIC | ||||
| Context : | Data to be passed through to the Handler as a parameter. Not used by the VI Provider. | ||||
| Handler : | Address of the user-defined function to be called when an asynchronous error occurs. This function is not guaranteed to run in the context of the calling thread. The error handler function is called with the following input parameters:
|
Description
VipErrorCallback is used by the VI Consumer to register an error handling function with the VI Provider. If the VI Consumer does not register an error handling function via this call, a default error handler will log the error. If an error handling function has been specified via the
VipErrorCallback function, the default error handling function...