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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue