1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-12 10:23:16 +03:00

Fix regressions introduced by converting URLS to HTTPS (#6654)

This commit is contained in:
Jesse Wilson
2021-04-28 09:07:05 -04:00
committed by GitHub
parent 28e66dab62
commit 4ebc5f644c
3 changed files with 16 additions and 16 deletions

View File

@@ -13,7 +13,7 @@ Specific security vs. connectivity decisions are implemented by [ConnectionSpec]
* `RESTRICTED_TLS` is a secure configuration, intended to meet stricter compliance requirements.
* `MODERN_TLS` is a secure configuration that connects to modern HTTPS servers.
* `COMPATIBLE_TLS` is a secure configuration that connects to securebut not currentHTTPS servers.
* `CLEARTEXT` is an insecure configuration that is used for `https://` URLs.
* `CLEARTEXT` is an insecure configuration that is used for `http://` URLs.
These loosely follow the model set in [Google Cloud Policies](https://cloud.google.com/load-balancing/docs/ssl-policies-concepts). We [track changes](tls_configuration_history.md) to this policy.