Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 699 Bytes

RegistrationClose.md

File metadata and controls

30 lines (20 loc) · 699 Bytes

RegistrationClose function

Closes an existing registration.

Syntax

typedef
_IRQL_requires_max_(PASSIVE_LEVEL)
void
(QUIC_API * QUIC_REGISTRATION_CLOSE_FN)(
    _In_ _Pre_defensive_ __drv_freesMem(Mem)
        HQUIC Registration
    );

Parameters

Registration

A registration handle from a previous call to RegistrationOpen.

Remarks

The application must close/delete all child configurations and connection objects before closing the registration. This call will block on those outstanding objects being cleaned up. Do no call it on any MsQuic event callback, or it will deadlock.

See Also

RegistrationOpen