update packages

This commit is contained in:
Kevin Kai Berthold 2023-09-21 22:32:40 +02:00
parent 450a6f2796
commit 26c741ad03
4 changed files with 7 additions and 1 deletions

View file

@ -66,6 +66,8 @@ public class Program
options.Port = builder.Configuration.GetValue<int?>(Appsettings.ServerPort) ?? throw new Exception($"{Appsettings.ServerPort} value not set (appsettings)");
options.Keepalive = 10000;
options.Timeout = 30000;
options.Compression = true;
options.Encryption = Encryption.Tls12;
options.UseSerializer<MemPackSerializer<IMessage>, IMessage>();