Method
EDataServerSourceget_last_credentials_required_arguments_sync
since: 3.16
Declaration [src]
gboolean
e_source_get_last_credentials_required_arguments_sync (
ESource* source,
ESourceCredentialsReason* out_reason,
gchar** out_certificate_pem,
GTlsCertificateFlags* out_certificate_errors,
GError** out_op_error,
GCancellable* cancellable,
GError** error
)
Description [src]
Retrieves the last used arguments of the ‘credentials-required’ signal emission.
If there was none emitted yet, or a corresponding ‘authenitcate’ had been emitted
already, then the out_reason is set to #E_SOURCE_CREDENTIALS_REASON_UNKNOWN
and the value of other ‘out’ arguments is set to no values.
If an error occurs, the function sets error and returns FALSE. The result gchar
values should be freed with g_free() when no longer needed.
Available since: 3.16
Parameters
out_reason-
Type:
ESourceCredentialsReasonAn
ESourceCredentialsReason, why the credentials are required.The argument will be set by the function. The caller of the method takes ownership of the returned data, and is responsible for freeing it. out_certificate_pem-
Type:
gchar**PEM-encoded secure connection certificate, or an empty string.
The argument will be set by the function. The caller of the method takes ownership of the returned data, and is responsible for freeing it. The value is a NUL terminated UTF-8 string. out_certificate_errors-
Type:
GTlsCertificateFlagsA bit-or of
GTlsCertificateFlagsfor secure connection certificate.The argument will be set by the function. The caller of the method takes ownership of the returned data, and is responsible for freeing it. out_op_error-
Type:
GErrorA
GErrorwith a description of the previous credentials error.The argument will be set by the function. The caller of the method takes ownership of the returned data, and is responsible for freeing it. cancellable-
Type:
GCancellableOptional
GCancellableobject, orNULL.The argument can be NULL.The data is owned by the caller of the method. error-
Type:
GError **The return location for a recoverable error.
The argument can be NULL.If the return location is not NULL, then you must initialize it to aNULLGError*.The argument will be left initialized to NULLby the method if there are no errors.In case of error, the argument will be set to a newly allocated GError; the caller will take ownership of the data, and be responsible for freeing it.