- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for writeSynReset (0.04 seconds)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt
streamId: Int, errorCode: ErrorCode, ) { writerQueue.execute("$connectionName[$streamId] writeSynReset") { try { writeSynReset(streamId, errorCode) } catch (e: IOException) { failConnection(e) } } } @Throws(IOException::class) internal fun writeSynReset( streamId: Int, statusCode: ErrorCode, ) { writer.rstStream(streamId, statusCode)Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Jul 31 04:18:40 GMT 2025 - 31.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
fun close( rstStatusCode: ErrorCode, errorException: IOException?, ) { if (!closeInternal(rstStatusCode, errorException)) { return // Already closed. } connection.writeSynReset(id, rstStatusCode) } override fun cancel() { closeLater(ErrorCode.CANCEL) } /** * Abnormally terminate this stream. This enqueues a `RST_STREAM` frame and returns immediately.
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Jul 07 18:57:05 GMT 2025 - 22.4K bytes - Click Count (0)