summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2021-06-23 08:14:23 -0500
committerPatrick Griffis <pgriffis@igalia.com>2021-06-24 12:18:31 -0500
commit2f92f5fb9310903872a0eaaee25918825ef49e2e (patch)
tree751ab218fa52ca1ae6165e703e77a793ac3b171b
parent71ca70a0f62cfc30dfacfd2ee0952a86e2e64055 (diff)
downloadlibsoup-2f92f5fb9310903872a0eaaee25918825ef49e2e.tar.gz
Remove TLS section of SoupSession porting docs
SoupSessionAsync and SoupSessionSync are growing the new behavior, so there is no longer any difference to document here.
-rw-r--r--docs/reference/session-porting.xml26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/reference/session-porting.xml b/docs/reference/session-porting.xml
index 67a433a1..c2f91094 100644
--- a/docs/reference/session-porting.xml
+++ b/docs/reference/session-porting.xml
@@ -45,32 +45,6 @@ linkend="SoupSessionAsync"><type>SoupSessionAsync</type></link> and
<itemizedlist>
<listitem>
<para>
- The system TLS/SSL certificate database is used by default to
- validate https certificates, and sites with invalid certificates
- will refuse to load with a
- <link linkend="SOUP-STATUS-SSL-FAILED:CAPS"><literal>SOUP_STATUS_SSL_FAILED</literal></link>
- error.
- </para>
- <para>
- You can still override the CA database as before, by setting the
- <link linkend="SoupSession--ssl-ca-file"><type>"ssl-ca-file"</type></link>
- property, although the
- <link linkend="SoupSession--tls-database"><type>"tls-database"</type></link>
- property is preferred, since it allows you to do proper error
- handling.
- </para>
- <para>
- If you want to accept all certificates, set
- <link linkend="SoupSession--ssl-strict"><type>"ssl-strict"</type></link> to
- <literal>FALSE</literal>. Note that libsoup will still check
- certificates, it will just continue with the HTTP request even
- if the certificate fails to validate. You can use
- <link linkend="soup-message-get-https-status"><function>soup_message_get_https_status()</function></link>
- to look at the certificate after the fact.
- </para>
- </listitem>
- <listitem>
- <para>
The
<link linkend="SoupSession--timeout"><type>"timeout"</type></link>
and