This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package okhttp3.tls | |
import okhttp3.OkHttpClient | |
import okhttp3.Request | |
import okhttp3.tls.HandshakeCertificates.Builder | |
fun main() { | |
val request = Request.Builder() | |
.url("https://httpbin.org/get") | |
.build() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit dbadaa6b614d02b37b6c7c773a418fd0216d85d6 | |
Author: Yuri Schimke <[email protected]> | |
Date: Sat Apr 13 10:59:43 2019 +0100 | |
HttpExchange Kotlin conversion | |
diff --git a/okhttp/src/main/java/okhttp3/internal/http/ExchangeCode.kt b/okhttp/src/main/java/okhttp3/internal/http/ExchangeCode.kt | |
index 9fa1a70d..b0c3e2e7 100644 | |
--- a/okhttp/src/main/java/okhttp3/internal/http/ExchangeCode.kt | |
+++ b/okhttp/src/main/java/okhttp3/internal/http/ExchangeCode.kt |
NewerOlder