a first file was sent by websocket

This commit is contained in:
Paul Schneider 2019-06-25 17:11:16 +01:00
commit 9f4d0b3aef
6 changed files with 86 additions and 35 deletions

View file

@ -1,5 +1,6 @@
namespace Yavsc
{
using Microsoft.AspNet.Http;
using Yavsc.Models.Auth;
public static class Constants
@ -36,7 +37,7 @@ namespace Yavsc
YavscConnectionStringEnvName = "YAVSC_DB_CONNECTION";
public const int WebSocketsMaxBufLen = 6*1024;
public const int WebSocketsMaxBufLen = 4*1024;
public static readonly long DefaultFSQ = 1024*1024*500;
@ -62,5 +63,6 @@ namespace Yavsc
public const int MaxUserNameLength = 26;
public const string LivePath = "/live/cast";
}
}