Christian Kern
Christian Kern
I try to use SSL for my WebSocket connection and therefore i use this setup: ```c# var server = new WebSocketServer("wss://0.0.0.0:8181"); var config = BuildConfig(); server.Certificate = X509Certificate2.CreateFromPemFile("fullchain.pem","privkey.pem"); ``` Everything...
# WebClient like API for HttpClient As `WebClient` is an obsolete API (as far as I got told) and has some problems ([i.e. automatic redirecting](https://stackoverflow.com/questions/63327319/webclient-is-not-following-redirects-in-net-core-3-1)) it would be nice to...
Reported by: itsmemac#3623 Currently when starting Fork all players are loaded into memory, which works fine for all small and medium size servers. If the server has a high amount...
Currently Fork accesses a servers directory by expecting the name of the directory to be the name of the server. This means, that renaming a server breaks Fork. **Solution:** Introduce...