[lwip-users] POST issues with different browsers

2019-09-16 Thread Mário Luzeiro
Hello all, I'm implementing a httpd over LWIP (latest master) /mbedTLS, despite it is a very slow MCU implementation, it is working. The issue now I have is with POST. If I start a browser in private mode, the first time I press the button for POST it works OK. For Opera and Chromium on the nex

Re: [lwip-users] POST issues with different browsers

2019-09-17 Thread tomek wilkxt
Hi I had a similar problem with GET, OK in firefox but not in chrome anymore. This was due to the fact that chromium immediately made two parallel queries when establishing the connection. My STM32 have smal RAM and was unable to handle it. Helped decres max content len to 3072 from 8192 #define M

Re: [lwip-users] POST issues with different browsers

2019-09-19 Thread Mário Luzeiro
2019 10:49 To: Mailing list for lwIP users Subject: Re: [lwip-users] POST issues with different browsers Hi I had a similar problem with GET, OK in firefox but not in chrome anymore. This was due to the fact that chromium immediately made two parallel queries when establishing the connection. My

Re: [lwip-users] POST issues with different browsers

2019-09-19 Thread Mário Luzeiro
From: lwip-users on behalf of Mário Luzeiro Sent: 19 September 2019 10:18 To: Mailing list for lwIP users Subject: Re: [lwip-users] POST issues with different browsers Hi Tomek My MBEDTLS_SSL_MAX_CONTENT_LEN is already smaller, but tried with that value and I had the same behavior