uWebSockets
uWebSockets copied to clipboard
Simple, secure & standards compliant web server for the most demanding of applications
I was using Powershell scripts to run some tests with my app embedded with uWebsockets, and found wired errors; I googled around, found this: https://github.com/PowerShell/PowerShell/issues/9241
I have an SSL app, which ran but all SSL connections failed as the certificates were with incorrect permissions (system admin had messed up). Knowing that the problem was with...
These lines ``` # WITH_LIBDEFLATE=1 enables fast paths for SHARED_COMPRESSOR and inflation ifeq ($(WITH_LIBDEFLATE),1) override CXXFLAGS += -I libdeflate -DUWS_USE_LIBDEFLATE override LDFLAGS += libdeflate/libdeflate.a endif ``` require bundled ```libdeflate``` but...
written, failed, progress needs to be returned so that proper timeout logic can be implemented. Currently we only reset timeout on success but we really should reset it on any...
It can be useful to force close connections after 30 minutes or so, and have them reconnect so that load balancing can be recalculated. Without this upper limit it can...
If you have SNI, you can't really use the router since it is global for the app as a whole. Maybe it could be possible to better integrate the SNI...
keepAliveTimeout should be low 10 seconds streamTineout should be high 300 seconds They should be settable in App constructor onData streaming should have timeout and should always end with isLast...
The Content-Length attribute is parsed as a `unsigned int`, which gives the wrong result for stream sizes larger than 4 GB. In our company, we use µWebSockets to provide websocket...
The error I'm getting upon trying to reach the server with my browser is: ``` Did not find file: / Error: Returning from a request handler without responding or attaching...