default channel should be reliable fragmented sequenced (#65)

This commit is contained in:
Paul Pacheco 2018-10-21 04:38:55 -05:00 committed by vis2k
parent acc34e5fb3
commit 3816a69578

View File

@ -65,7 +65,7 @@ public LLAPITransport(GlobalConfig globalConfig = null, ConnectionConfig connect
connectionConfig.BandwidthPeakFactor = 2;
connectionConfig.WebSocketReceiveBufferMaxSize = 0;
connectionConfig.UdpSocketReceiveBufferMaxSize = 0;
channelId = connectionConfig.AddChannel(QosType.UnreliableFragmented);
channelId = connectionConfig.AddChannel(QosType.ReliableFragmentedSequenced);
}
this.connectionConfig = connectionConfig;