1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ 2 /* 3 * Copyright (C) 2021 Igalia S.L. 4 */ 5 6 #pragma once 7 8 #include "soup-connection.h" 9 #include <gio/gio.h> 10 11 G_BEGIN_DECLS 12 13 #define SOUP_TYPE_TLS_INTERACTION (soup_tls_interaction_get_type ()) 14 G_DECLARE_FINAL_TYPE (SoupTlsInteraction, soup_tls_interaction, SOUP, TLS_INTERACTION, GTlsInteraction) 15 16 GType soup_tls_interaction_get_type (void); 17 GTlsInteraction *soup_tls_interaction_new (SoupConnection *conn); 18 19 G_END_DECLS 20