Max buf len from constants

vnext
Paul Schneider 5 years ago
parent f2e9b8ed7d
commit e826a4edc9
5 changed files with 6 additions and 5 deletions

@ -1 +1 @@
03
04

@ -36,7 +36,7 @@ namespace Yavsc
YavscConnectionStringEnvName = "YAVSC_DB_CONNECTION";
public const int WebSocketsMaxBufLen = 6*1024;
public static readonly long DefaultFSQ = 1024*1024*500;

@ -17,7 +17,7 @@ namespace Yavsc
var webSocketOptions = new WebSocketOptions()
{
KeepAliveInterval = TimeSpan.FromSeconds(120),
ReceiveBufferSize = 16 * 1024,
ReceiveBufferSize = Constants.WebSocketsMaxBufLen,
ReplaceFeature = true
};
app.UseWebSockets(webSocketOptions);

@ -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…