tls_validation_flags


Description:

[ Version ( deprecated = true , deprecated_since = "2.72" ) ]
public TlsCertificateFlags tls_validation_flags { get; set construct; }

Warning: tls_validation_flags is deprecated since 2.72.

The TLS validation flags used when creating TLS connections.

Note:

Do not attempt to ignore validation errors.

The default value is g_tls_certificate_validate_all.

GLib guarantees that if certificate verification fails, at least one flag will be set, but it does not guarantee that all possible flags will be set. Accordingly, you may not safely decide to ignore any particular type of error. For example, it would be incorrect to mask g_tls_certificate_expired if you want to allow expired certificates, because this could potentially be the only error flag set even if other problems exist with the certificate. Therefore, there is no safe way to use this property. This is not a horrible problem, though, because you should not be attempting to ignore validation errors anyway. If you really must ignore TLS certificate errors, connect to the event signal, wait for it to be emitted with g_socket_client_tls_handshaking, and use that to connect to accept_certificate.