- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getApplicationBufferSize (0.67 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt
import javax.net.ssl.SSLSession import javax.net.ssl.SSLSessionContext import javax.security.cert.X509Certificate class FakeSSLSession(vararg val certificates: Certificate) : SSLSession { override fun getApplicationBufferSize(): Int { throw UnsupportedOperationException() } override fun getCipherSuite(): String { throw UnsupportedOperationException() } override fun getCreationTime(): Long {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
} override fun getPeerPort(): Int { return delegate!!.peerPort } override fun getPacketBufferSize(): Int { return delegate!!.packetBufferSize } override fun getApplicationBufferSize(): Int { return delegate!!.applicationBufferSize }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0)