mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 09:46:17 +01:00
gtlsclientconnection: deprecate validation-flags property
It doesn't work as expected, and you shouldn't be trying to use it anyway.
This commit is contained in:
parent
780af9cff3
commit
38de97c148
@ -59,7 +59,21 @@ g_tls_client_connection_default_init (GTlsClientConnectionInterface *iface)
|
||||
* ways indicated here will be rejected unless the application
|
||||
* overrides the default via #GTlsConnection::accept-certificate.
|
||||
*
|
||||
* 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 #GTlsConnection::accept-certificate.
|
||||
*
|
||||
* Since: 2.28
|
||||
*
|
||||
* Deprecated: 2.72: Do not attempt to ignore validation errors.
|
||||
*/
|
||||
g_object_interface_install_property (iface,
|
||||
g_param_spec_flags ("validation-flags",
|
||||
@ -69,7 +83,8 @@ g_tls_client_connection_default_init (GTlsClientConnectionInterface *iface)
|
||||
G_TLS_CERTIFICATE_VALIDATE_ALL,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT |
|
||||
G_PARAM_STATIC_STRINGS));
|
||||
G_PARAM_STATIC_STRINGS |
|
||||
G_PARAM_DEPRECATED));
|
||||
|
||||
/**
|
||||
* GTlsClientConnection:server-identity:
|
||||
@ -183,9 +198,15 @@ g_tls_client_connection_new (GIOStream *base_io_stream,
|
||||
*
|
||||
* Gets @conn's validation flags
|
||||
*
|
||||
* This function does not work as originally designed and is impossible
|
||||
* to use correctly. See #GTlsClientConnection:validation-flags for more
|
||||
* information.
|
||||
*
|
||||
* Returns: the validation flags
|
||||
*
|
||||
* Since: 2.28
|
||||
*
|
||||
* Deprecated: 2.72: Do not attempt to ignore validation errors.
|
||||
*/
|
||||
GTlsCertificateFlags
|
||||
g_tls_client_connection_get_validation_flags (GTlsClientConnection *conn)
|
||||
@ -207,7 +228,13 @@ g_tls_client_connection_get_validation_flags (GTlsClientConnection *conn)
|
||||
* checks performed when validating a server certificate. By default,
|
||||
* %G_TLS_CERTIFICATE_VALIDATE_ALL is used.
|
||||
*
|
||||
* This function does not work as originally designed and is impossible
|
||||
* to use correctly. See #GTlsClientConnection:validation-flags for more
|
||||
* information.
|
||||
*
|
||||
* Since: 2.28
|
||||
*
|
||||
* Deprecated: 2.72: Do not attempt to ignore validation errors.
|
||||
*/
|
||||
void
|
||||
g_tls_client_connection_set_validation_flags (GTlsClientConnection *conn,
|
||||
|
@ -59,9 +59,9 @@ GIOStream * g_tls_client_connection_new (GIOStream
|
||||
GSocketConnectable *server_identity,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GLIB_DEPRECATED_IN_2_72
|
||||
GTlsCertificateFlags g_tls_client_connection_get_validation_flags (GTlsClientConnection *conn);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GLIB_DEPRECATED_IN_2_72
|
||||
void g_tls_client_connection_set_validation_flags (GTlsClientConnection *conn,
|
||||
GTlsCertificateFlags flags);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
|
Loading…
Reference in New Issue
Block a user