Zach Hoeken

Results 10 issues of Zach Hoeken

I'm writing a server that handles websocket connections using ESPAsyncWebserver and ArduinoJSON. As part of that, I was testing to see how many messages it could handle and I was...

This isn't really an issue, but I wanted to share my setup since I haven't really found a complete guide to using this library and thought it might be useful...

Added secure websockets support that also respects the --insecure flag.

I'm using loadtest to test the performance of my websocket server on an embedded device (which is why the #s are so low) I have a script that tests at...

I installed Ubuntu 24.04 on my OrangePi 5 Plus back in April, and recently pulled it back out today. I did an `apt-get update` and `apt-get upgrade` and now it...

bug

For a variety of reasons, we need to implement some 'middleware' functionality where the user can define a number of functions to be called that work with a request +...

proposal from @mathieucarbou Example: ```c++ #ifdef PSYCHIC_TO_ESPASYNCWS #include #endif ``` content: ```c++ #pragma once #include "PsychicHttpServer.h" #include "PsychicWebHandler.h" #include "PsychicRequest.h" using AsyncWebServer = PsychicHttpServer; using AsyncCallbackWebHandler = PsychicWebHandler; using AsyncWebServerRequest...

proposal from @mathieucarbou send vs reply: ```c++ #ifdef PSYCHIC_TO_ESPASYNCWS esp_err_t send(int code) { return reply(code); } esp_err_t send(int code, const String& contentType = emptyString, const String& content = emptyString); #endif...

I really like this library and use it a lot. I love the simplicity and it really makes debugging a lot easier. One thing I find myself constantly doing when...