docs: Fix documentation for 95d300eac58e

This commit is contained in:
Ross Lagerwall 2015-04-07 18:22:58 +01:00
parent b470b12c49
commit 495d864e43
3 changed files with 3 additions and 1 deletions

View File

@ -3622,6 +3622,7 @@ g_tls_client_connection_get_validation_flags
g_tls_client_connection_set_use_ssl3 g_tls_client_connection_set_use_ssl3
g_tls_client_connection_get_use_ssl3 g_tls_client_connection_get_use_ssl3
g_tls_client_connection_get_accepted_cas g_tls_client_connection_get_accepted_cas
g_tls_client_connection_copy_session_state
<SUBSECTION Standard> <SUBSECTION Standard>
G_IS_TLS_CLIENT_CONNECTION G_IS_TLS_CLIENT_CONNECTION
G_TLS_CLIENT_CONNECTION G_TLS_CLIENT_CONNECTION

View File

@ -342,7 +342,7 @@ g_tls_client_connection_get_accepted_cas (GTlsClientConnection *conn)
/** /**
* g_tls_client_connection_copy_session_state: * g_tls_client_connection_copy_session_state:
* @conn: a #GTlsClientConnection * @conn: a #GTlsClientConnection
* @other: a #GTlsClientConnection * @source: a #GTlsClientConnection
* *
* Copies session state from one connection to another. This is * Copies session state from one connection to another. This is
* not normally needed, but may be used when the same session * not normally needed, but may be used when the same session

View File

@ -37,6 +37,7 @@ typedef struct _GTlsClientConnectionInterface GTlsClientConnectionInterface;
/** /**
* GTlsClientConnectionInterface: * GTlsClientConnectionInterface:
* @g_iface: The parent interface. * @g_iface: The parent interface.
* @copy_session_state: Copies session state from one #GTlsClientConnection to another.
* *
* vtable for a #GTlsClientConnection implementation. * vtable for a #GTlsClientConnection implementation.
* *