X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgtlsinteraction.h;h=99d7274c7cdc3278dcf26423be0a636d1d94c975;hb=e55a953642a9e402f4363f9fa347b6061dd78990;hp=283464e43088bbf9c3d821f04cf83b75f2489ab7;hpb=0156092a4203d1c40dcd0df7515fc7eeaebba9ac;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gtlsinteraction.h b/gio/gtlsinteraction.h index 283464e..99d7274 100644 --- a/gio/gtlsinteraction.h +++ b/gio/gtlsinteraction.h @@ -13,9 +13,7 @@ * 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, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Author: Stef Walter */ @@ -69,9 +67,26 @@ struct _GTlsInteractionClass GAsyncResult *result, GError **error); + GTlsInteractionResult (* request_certificate) (GTlsInteraction *interaction, + GTlsConnection *connection, + GTlsCertificateRequestFlags flags, + GCancellable *cancellable, + GError **error); + + void (* request_certificate_async) (GTlsInteraction *interaction, + GTlsConnection *connection, + GTlsCertificateRequestFlags flags, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + + GTlsInteractionResult (* request_certificate_finish) (GTlsInteraction *interaction, + GAsyncResult *result, + GError **error); + /*< private >*/ /* Padding for future expansion */ - gpointer padding[24]; + gpointer padding[21]; }; GLIB_AVAILABLE_IN_ALL @@ -83,7 +98,6 @@ GTlsInteractionResult g_tls_interaction_invoke_ask_password (GTlsInteraction GCancellable *cancellable, GError **error); - GLIB_AVAILABLE_IN_ALL GTlsInteractionResult g_tls_interaction_ask_password (GTlsInteraction *interaction, GTlsPassword *password, @@ -102,6 +116,33 @@ GTlsInteractionResult g_tls_interaction_ask_password_finish (GTlsInteraction GAsyncResult *result, GError **error); +GLIB_AVAILABLE_IN_2_40 +GTlsInteractionResult g_tls_interaction_invoke_request_certificate (GTlsInteraction *interaction, + GTlsConnection *connection, + GTlsCertificateRequestFlags flags, + GCancellable *cancellable, + GError **error); + +GLIB_AVAILABLE_IN_2_40 +GTlsInteractionResult g_tls_interaction_request_certificate (GTlsInteraction *interaction, + GTlsConnection *connection, + GTlsCertificateRequestFlags flags, + GCancellable *cancellable, + GError **error); + +GLIB_AVAILABLE_IN_2_40 +void g_tls_interaction_request_certificate_async (GTlsInteraction *interaction, + GTlsConnection *connection, + GTlsCertificateRequestFlags flags, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +GLIB_AVAILABLE_IN_2_40 +GTlsInteractionResult g_tls_interaction_request_certificate_finish (GTlsInteraction *interaction, + GAsyncResult *result, + GError **error); + G_END_DECLS #endif /* __G_TLS_INTERACTION_H__ */