/* Copyright (C) 2013 The giomm Development Team * * 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 * version 2.1 of the License, or (at your option) any later version. * * 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, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/interface_p.h) _PINCLUDE(gio/gio.h) #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GTlsClientConnectionInterface GTlsClientConnectionInterface; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { class SocketConnectable; /** TlsClientConnection - TLS client-side connection. * TlsClientConnection is the client-side subclass of TlsConnection, * representing a client-side TLS connection. * @newin{2,36} */ class TlsClientConnection : public Glib::Interface, public TlsConnection { _CLASS_INTERFACE(TlsClientConnection, GTlsClientConnection, G_TLS_CLIENT_CONNECTION, GTlsClientConnectionInterface) _CUSTOM_CTOR_CAST public: //TODO: It's not possible to use _WRAP_CTOR/_WRAP_CREATE to wrap the new //function because this is an interface. #m4 _CONVERSION(`GIOStream*',`Glib::RefPtr',`Glib::wrap(G_TLS_CLIENT_CONNECTION($3))') _WRAP_METHOD(static Glib::RefPtr create(const Glib::RefPtr& base_io_stream, const Glib::RefPtr& server_identity{?}), g_tls_client_connection_new, errthrow) _WRAP_METHOD(void set_server_identity(const Glib::RefPtr& identity), g_tls_client_connection_set_server_identity) _WRAP_METHOD(Glib::RefPtr get_server_identity(), g_tls_client_connection_get_server_identity, refreturn) _WRAP_METHOD(Glib::RefPtr get_server_identity() const, g_tls_client_connection_get_server_identity, constversion) _WRAP_METHOD(void set_validation_flags(TlsCertificateFlags flags), g_tls_client_connection_set_validation_flags) _WRAP_METHOD(TlsCertificateFlags get_validation_flags() const, g_tls_client_connection_get_validation_flags) _WRAP_METHOD(void set_use_ssl3(bool use_ssl3 = true), g_tls_client_connection_set_use_ssl3) _WRAP_METHOD(bool get_use_ssl3() const, g_tls_client_connection_get_use_ssl3) #m4 _CONVERSION(`GList*',`std::vector< Glib::RefPtr >',`Glib::ListHandler< Glib::RefPtr >::list_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector< Glib::RefPtr > get_accepted_cas(), g_tls_client_connection_get_accepted_cas) #m4 _CONVERSION(`GList*',`std::vector< Glib::RefPtr >',`Glib::ListHandler< Glib::RefPtr >::list_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector< Glib::RefPtr > get_accepted_cas() const, g_tls_client_connection_get_accepted_cas) _WRAP_METHOD(void copy_session_state(const Glib::RefPtr& source), g_tls_client_connection_copy_session_state) _WRAP_PROPERTY("accepted-cas", std::vector< Glib::RefPtr >) _WRAP_PROPERTY("server-identity", Glib::RefPtr) _WRAP_PROPERTY("use-ssl3", bool) _WRAP_PROPERTY("validation-flags", TlsCertificateFlags) }; } // namespace Gio