You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: krpc/krpc-test/src/jvmTest/kotlin/kotlinx/rpc/test/ProtocolTest.kt
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -64,15 +64,16 @@ class ProtocolTest : ProtocolTestBase() {
64
64
val connectionId =1
65
65
66
66
val serverHandshakeMessage =RPCTransportMessage.StringMessage(
67
-
"{\"type\":\"org.jetbrains.krpc.internal.transport.RPCProtocolMessage.Handshake\",\"connectionId\":$connectionId,\"supportedPlugins\":[-32767, 32766, 32767]}"// 32766 and 32767 are is unknown to client
67
+
"{\"type\":\"org.jetbrains.krpc.internal.transport.RPCProtocolMessage.Handshake\",\"connectionId\":$connectionId,\"supportedPlugins\":[-32767, 32766, 32767]}"// 32766 and 32767 are unknown to the client
68
68
)
69
69
70
70
transport.server.send(serverHandshakeMessage)
71
71
72
72
transport.server.receive()
73
73
74
+
// callId changes here are always compatible
74
75
val serverResponseMessage =RPCTransportMessage.StringMessage(
0 commit comments