2015-06-25 13:58:14 +02:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright © 2010 Red Hat, Inc.
|
|
|
|
* Copyright © 2015 Collabora, Ltd.
|
|
|
|
*
|
2022-05-18 10:12:45 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
2015-06-25 13:58:14 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2017-05-27 18:21:30 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2015-06-25 13:58:14 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_DTLS_CONNECTION_H__
|
|
|
|
#define __G_DTLS_CONNECTION_H__
|
|
|
|
|
|
|
|
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
|
|
|
|
#error "Only <gio/gio.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gio/gdatagrambased.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define G_TYPE_DTLS_CONNECTION (g_dtls_connection_get_type ())
|
|
|
|
#define G_DTLS_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_DTLS_CONNECTION, GDtlsConnection))
|
|
|
|
#define G_IS_DTLS_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_DTLS_CONNECTION))
|
|
|
|
#define G_DTLS_CONNECTION_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_DTLS_CONNECTION, GDtlsConnectionInterface))
|
|
|
|
|
|
|
|
typedef struct _GDtlsConnectionInterface GDtlsConnectionInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GDtlsConnectionInterface:
|
|
|
|
* @g_iface: The parent interface.
|
|
|
|
* @accept_certificate: Check whether to accept a certificate.
|
|
|
|
* @handshake: Perform a handshake operation.
|
|
|
|
* @handshake_async: Start an asynchronous handshake operation.
|
|
|
|
* @handshake_finish: Finish an asynchronous handshake operation.
|
|
|
|
* @shutdown: Shut down one or both directions of the connection.
|
|
|
|
* @shutdown_async: Start an asynchronous shutdown operation.
|
|
|
|
* @shutdown_finish: Finish an asynchronous shutdown operation.
|
2021-06-21 16:31:17 +02:00
|
|
|
* @set_advertised_protocols: Set APLN protocol list (Since: 2.60)
|
|
|
|
* @get_negotiated_protocol: Get ALPN-negotiated protocol (Since: 2.60)
|
|
|
|
* @get_binding_data: Retrieve TLS channel binding data (Since: 2.66)
|
2015-06-25 13:58:14 +02:00
|
|
|
*
|
|
|
|
* Virtual method table for a #GDtlsConnection implementation.
|
|
|
|
*
|
|
|
|
* Since: 2.48
|
|
|
|
*/
|
|
|
|
struct _GDtlsConnectionInterface
|
|
|
|
{
|
|
|
|
GTypeInterface g_iface;
|
|
|
|
|
|
|
|
/* signals */
|
|
|
|
gboolean (*accept_certificate) (GDtlsConnection *connection,
|
|
|
|
GTlsCertificate *peer_cert,
|
|
|
|
GTlsCertificateFlags errors);
|
|
|
|
|
|
|
|
/* methods */
|
|
|
|
gboolean (*handshake) (GDtlsConnection *conn,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
void (*handshake_async) (GDtlsConnection *conn,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
gboolean (*handshake_finish) (GDtlsConnection *conn,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
gboolean (*shutdown) (GDtlsConnection *conn,
|
|
|
|
gboolean shutdown_read,
|
|
|
|
gboolean shutdown_write,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
void (*shutdown_async) (GDtlsConnection *conn,
|
|
|
|
gboolean shutdown_read,
|
|
|
|
gboolean shutdown_write,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
gboolean (*shutdown_finish) (GDtlsConnection *conn,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
2018-12-19 01:32:55 +01:00
|
|
|
|
|
|
|
void (*set_advertised_protocols) (GDtlsConnection *conn,
|
|
|
|
const gchar * const *protocols);
|
|
|
|
const gchar *(*get_negotiated_protocol) (GDtlsConnection *conn);
|
2020-06-25 14:40:34 +02:00
|
|
|
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
gboolean (*get_binding_data) (GDtlsConnection *conn,
|
|
|
|
GTlsChannelBindingType type,
|
|
|
|
GByteArray *data,
|
|
|
|
GError **error);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
2015-06-25 13:58:14 +02:00
|
|
|
};
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GType g_dtls_connection_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_set_database (GDtlsConnection *conn,
|
|
|
|
GTlsDatabase *database);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsDatabase *g_dtls_connection_get_database (GDtlsConnection *conn);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_set_certificate (GDtlsConnection *conn,
|
|
|
|
GTlsCertificate *certificate);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsCertificate *g_dtls_connection_get_certificate (GDtlsConnection *conn);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_set_interaction (GDtlsConnection *conn,
|
|
|
|
GTlsInteraction *interaction);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsInteraction *g_dtls_connection_get_interaction (GDtlsConnection *conn);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsCertificate *g_dtls_connection_get_peer_certificate (GDtlsConnection *conn);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsCertificateFlags g_dtls_connection_get_peer_certificate_errors (GDtlsConnection *conn);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_set_require_close_notify (GDtlsConnection *conn,
|
|
|
|
gboolean require_close_notify);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_get_require_close_notify (GDtlsConnection *conn);
|
|
|
|
|
2019-05-27 20:50:09 +02:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_DEPRECATED_IN_2_60
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_set_rehandshake_mode (GDtlsConnection *conn,
|
|
|
|
GTlsRehandshakeMode mode);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_DEPRECATED_IN_2_60
|
2015-06-25 13:58:14 +02:00
|
|
|
GTlsRehandshakeMode g_dtls_connection_get_rehandshake_mode (GDtlsConnection *conn);
|
2019-05-27 20:50:09 +02:00
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
2015-06-25 13:58:14 +02:00
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_handshake (GDtlsConnection *conn,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_handshake_async (GDtlsConnection *conn,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_handshake_finish (GDtlsConnection *conn,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_shutdown (GDtlsConnection *conn,
|
|
|
|
gboolean shutdown_read,
|
|
|
|
gboolean shutdown_write,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_shutdown_async (GDtlsConnection *conn,
|
|
|
|
gboolean shutdown_read,
|
|
|
|
gboolean shutdown_write,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_shutdown_finish (GDtlsConnection *conn,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_close (GDtlsConnection *conn,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
void g_dtls_connection_close_async (GDtlsConnection *conn,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_close_finish (GDtlsConnection *conn,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
/*< protected >*/
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_48
|
2015-06-25 13:58:14 +02:00
|
|
|
gboolean g_dtls_connection_emit_accept_certificate (GDtlsConnection *conn,
|
|
|
|
GTlsCertificate *peer_cert,
|
|
|
|
GTlsCertificateFlags errors);
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_60
|
2018-12-19 01:32:55 +01:00
|
|
|
void g_dtls_connection_set_advertised_protocols (GDtlsConnection *conn,
|
|
|
|
const gchar * const *protocols);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_60
|
2018-12-19 01:32:55 +01:00
|
|
|
const gchar * g_dtls_connection_get_negotiated_protocol (GDtlsConnection *conn);
|
|
|
|
|
2020-06-25 14:40:34 +02:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_66
|
2020-06-25 14:40:34 +02:00
|
|
|
gboolean g_dtls_connection_get_channel_binding_data (GDtlsConnection *conn,
|
|
|
|
GTlsChannelBindingType type,
|
|
|
|
GByteArray *data,
|
|
|
|
GError **error);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_70
|
2021-04-28 23:08:00 +02:00
|
|
|
GTlsProtocolVersion g_dtls_connection_get_protocol_version (GDtlsConnection *conn);
|
|
|
|
|
2022-10-05 19:39:21 +02:00
|
|
|
GIO_AVAILABLE_IN_2_70
|
2021-04-28 23:08:00 +02:00
|
|
|
gchar * g_dtls_connection_get_ciphersuite_name (GDtlsConnection *conn);
|
|
|
|
|
2015-06-25 13:58:14 +02:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __G_DTLS_CONNECTION_H__ */
|