Clemens Kirchgatterer
Clemens Kirchgatterer
AFAICS ESP8266 is the only Arduino platform where `WiFiUDP::flush()` behaves like what one expects on a POSIX system. Meaning sending/writing any pending data. But Arduino chose to use it as...
IMHO the semantics of HTTPupload.currentSize and HTTPupload.totalSize are wrong or at least highly misleading. now we get the size of the last chunk of data in currentSize and the number...
in ```bool WebServer::_parseForm(WiFiClient& client, String boundary, uint32_t len) {``` there is a hard limit of 32 arguments in the form. unfortunately this is not guarded against and leads to silent...
Public facing network classes use seconds instead of ms for setTimeout().
This is really only a minor issue, but maybe it can be fixed with relative ease. ``` clemens@alien:~/Devel/ESP/emonio-fw$ make clean make[1]: Entering directory '/home/clemens/Devel/ESP/emonio-fw/html' rm -rf ../build/3.0.99/xuan/eng/alpha/html make[1]: Leaving directory...
Is there a standard (or custom for that matter) way to inform the clients, that the server is under high load? Our clients are connected via MQTT and have the...
Is there a standard (or custom for that matter) way to inform the clients, that the server is under high load? Our clients are connected via MQTT and have the...
I have a SQLite DB that contains tables named `user` and `version`. When I try to perform a `ALTER TABLE` operation on any of them (no matter which), I get...
I have seen that mosquitto got support for openssl 1.1.0 recently. as far as I understand this would also allow to limit the maximum fragment size sent on TLS connections....