DtlsConnection.close

Close the DTLS connection. This is equivalent to calling gio.dtls_connection.DtlsConnection.shutdown to shut down both sides of the connection.

Closing a #GDtlsConnection waits for all buffered but untransmitted data to be sent before it completes. It then sends a close_notify DTLS alert to the peer and may wait for a close_notify to be received from the peer. It does not close the underlying #GDtlsConnection:base-socket; that must be closed separately.

Once conn is closed, all other operations will return gio.types.IOErrorEnum.Closed. Closing a #GDtlsConnection multiple times will not return an error.

#GDtlsConnections will be automatically closed when the last reference is dropped, but you might want to call this function to make sure resources are released as early as possible.

If cancellable is cancelled, the #GDtlsConnection may be left partially-closed and any pending untransmitted data may be lost. Call gio.dtls_connection.DtlsConnection.close again to complete closing the #GDtlsConnection.

interface DtlsConnection
bool
close

Parameters

cancellable gio.cancellable.Cancellable

a #GCancellable, or null

Return Value

Type: bool

true on success, false otherwise