Max buf len from constants
This commit is contained in:
parent
89db4a4251
commit
5f4f698b5b
5 changed files with 6 additions and 5 deletions
|
|
@ -7,6 +7,7 @@ using cli.Model;
|
|||
using Microsoft.Extensions.CommandLineUtils;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.OptionsModel;
|
||||
using Yavsc;
|
||||
|
||||
namespace cli {
|
||||
|
||||
|
|
@ -75,7 +76,7 @@ namespace cli {
|
|||
await _client.ConnectAsync(
|
||||
new Uri(_cxSettings.StreamingUrl+"/"+_flowIdArg.Value),
|
||||
_tokenSource.Token);
|
||||
const int bufLen = 56*1024;
|
||||
const int bufLen = Constants.WebSocketsMaxBufLen;
|
||||
byte [] buffer = new byte[bufLen];
|
||||
const int offset=0;
|
||||
int read = 0;
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
"Newtonsoft.Json": "9.0.1",
|
||||
"NJsonSchema.CodeGeneration.CSharp": "9.10.65",
|
||||
"Yavsc": {
|
||||
"version": "1.0.6-rc03",
|
||||
"version": "1.0.6-rc04",
|
||||
"target": "package"
|
||||
},
|
||||
"Microsoft.Dnx.Host": "1.0.0-rc1-final",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue