Search found 4 matches
- Fri May 31, 2024 5:04 pm
- Forum: ESP-IDF
- Topic: [SOLVED] ESP32-S3 IDF 5.2.x - httpd setting socket options SO_REUSE_ADDR?
- Replies: 2
- Views: 719
[SOLVED] Re: ESP32-S3 IDF 5.2.x - httpd setting socket options SO_REUSE_ADDR?
And I looked in the source and see SO_REUSEADDR is now included -- so it was just how I was setting up my UDP packet sender. The last post I searched and saw (from 2019) seemed to imply that SO_REUSEADDR was missing from the http server. That's no longer the case. This is in 5.2.x: /* Enable SO_REUS...
- Fri May 31, 2024 5:23 am
- Forum: ESP-IDF
- Topic: [SOLVED] ESP32-S3 IDF 5.2.x - httpd setting socket options SO_REUSE_ADDR?
- Replies: 2
- Views: 719
[SOLVED] ESP32-S3 IDF 5.2.x - httpd setting socket options SO_REUSE_ADDR?
Hey all, I have a working serial->UDP application and I recently added an HTTPD server for some user config... and that works too -- EXCEPT.... While the httpd server is running, I'm guessing it set up it's bind with options to NOT use SO_REUSEADDR. So now, my UDP sending functions get the "Address ...
- Mon Apr 15, 2024 2:05 am
- Forum: ESP-IDF
- Topic: softAP mode will never timeout client
- Replies: 2
- Views: 3981
Re: softAP mode will never timeout client
I have a similar issue I'd like to solve without resorting to ICMP/ping packets.
I wouldn't mind like a 1 or 2 minute timeout.
I wouldn't mind like a 1 or 2 minute timeout.
- Mon Apr 15, 2024 12:35 am
- Forum: ESP-IDF
- Topic: Packet transmission failure caused by Not enough space
- Replies: 10
- Views: 13063
Re: Packet transmission failure caused by Not enough space
Just to chime in, I'm on API v5.2(.1) Having the same issue --- and have worked in the backoff/delay for sendto() returning ENOMEM. Keeps the system from crashing - just kind of surprised a 115200 serial stream echoing packets (various sizes from 6 to <500bytes) backs up with 2 stations connected to...