X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgtlsbackend.c;h=aa46e3a3c6df90b924fd780012f32809d1c07259;hb=a3d86afa81ff34ce797a3928fd619ead219a37af;hp=2d6913ab4d0428d796645e890348f926dde09c2b;hpb=d85b722734a6fcfe94032f6113de9e5c190fd7c3;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gtlsbackend.c b/gio/gtlsbackend.c index 2d6913a..aa46e3a 100644 --- a/gio/gtlsbackend.c +++ b/gio/gtlsbackend.c @@ -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 . */ #include "config.h" @@ -67,8 +65,9 @@ /** * GTlsBackend: * - * Type implemented by TLS #GIOModules to provide access to additional - * TLS-related types. + * TLS (Transport Layer Security, aka SSL) backend. This is an + * internal type used to coordinate the different classes implemented + * by a TLS backend. * * Since: 2.28 */ @@ -103,7 +102,7 @@ g_tls_backend_get_default (void) * Checks if TLS is supported; if this returns %FALSE for the default * #GTlsBackend, it means no "real" TLS backend is available. * - * Return value: whether or not TLS is supported + * Returns: whether or not TLS is supported * * Since: 2.28 */ @@ -124,7 +123,7 @@ g_tls_backend_supports_tls (GTlsBackend *backend) * * Gets the default #GTlsDatabase used to verify TLS connections. * - * Return value: (transfer full): the default database, which should be + * Returns: (transfer full): the default database, which should be * unreffed when done. * * Since: 2.30 @@ -147,7 +146,7 @@ g_tls_backend_get_default_database (GTlsBackend *backend) * * Gets the #GType of @backend's #GTlsCertificate implementation. * - * Return value: the #GType of @backend's #GTlsCertificate + * Returns: the #GType of @backend's #GTlsCertificate * implementation. * * Since: 2.28 @@ -164,7 +163,7 @@ g_tls_backend_get_certificate_type (GTlsBackend *backend) * * Gets the #GType of @backend's #GTlsClientConnection implementation. * - * Return value: the #GType of @backend's #GTlsClientConnection + * Returns: the #GType of @backend's #GTlsClientConnection * implementation. * * Since: 2.28 @@ -181,7 +180,7 @@ g_tls_backend_get_client_connection_type (GTlsBackend *backend) * * Gets the #GType of @backend's #GTlsServerConnection implementation. * - * Return value: the #GType of @backend's #GTlsServerConnection + * Returns: the #GType of @backend's #GTlsServerConnection * implementation. * * Since: 2.28 @@ -196,9 +195,9 @@ g_tls_backend_get_server_connection_type (GTlsBackend *backend) * g_tls_backend_get_file_database_type: * @backend: the #GTlsBackend * - * Gets the #GTyep of @backend's #GTlsFileDatabase implementation. + * Gets the #GType of @backend's #GTlsFileDatabase implementation. * - * Return value: the #GType of backend's #GTlsFileDatabase implementation. + * Returns: the #GType of backend's #GTlsFileDatabase implementation. * * Since: 2.30 */