Jack Jansen
Jack Jansen
I'm making good progress implementing this, based on the bodyparser branch, but I'm running into an issue with the suggested API. `getRemainingLength()` and actually `getLength()` as well aren't really implementable...
I've created a pull request. I'm not 100% happy with the code, especially because I've had to implement yet another level of buffering (I saw the the existing buffered reading...
Hmm, good point. I will check. I was indeed modelling after the esp8266 server (there isn't any esp32 server, that's the whole point of doing the compatibility layer:-). I really...
I just ran into this issue as well, and it is very hard to debug (because the only indication is the `[HTTPS:E] SSL_new failed.` message). Suggestion: if you replace that...
The easiest way to reliably run into the problem (in a test situation) would be to allocate a large amount of memory before the first incoming https connection. `malloc(heap_caps_get_free_size()-20000)`, or...
I'm using a lot of different modules, I originally came across the problem on a pico32 (which is a convenient module to put into my LED strips), but it doesn't...
I've only inspected the code, not built idf myself to run it under the debugger, so I'm not sure which compile-time options in mbedtls are enabled, but maybe `mbedtls_platform_set_calloc_free()` could...
@fhessel I don't feel confident enough to review the keepalive change (which I don't understand). But +1 on the sha-header change. I have a merge request ready also for esp32_https_server_compat...
Yes, that is what I am doing at the moment, and that's fine for manual installation, but for our multiplatform CI/CD it's a hassle. I will have a look, time...
@nachoreimat do you think you could help with creating a PyPI package?