Search found 6 matches

by DCSBL-
Thu Sep 05, 2024 1:47 pm
Forum: ESP-IDF
Topic: Keep persistent connection to server via http_client with different endpoints
Replies: 4
Views: 879

Re: Keep persistent connection to server via http_client with different endpoints

Good point about not calling it a session; it is indeed almost a session. Let's call it a 'persistent connection,' as stated in the documentation. ;) esp_http_client_reset seems to be what we need. Any implementation using esp_http_client is dedicated to a specific service, so the user can decide if...
by DCSBL-
Thu Sep 05, 2024 11:18 am
Forum: ESP-IDF
Topic: Keep persistent connection to server via http_client with different endpoints
Replies: 4
Views: 879

Re: Keep persistent connection to server via http_client with different endpoints

Thank you @MicroController. I can work with your suggestion, but in my opinion it is a bit strange a persistent session is per URL, not per session. I think most http libraries in other programming languages do not work like that. What is a good way to discuss a potential change or addition of this ...
by DCSBL-
Wed Sep 04, 2024 1:25 pm
Forum: ESP-IDF
Topic: Keep persistent connection to server via http_client with different endpoints
Replies: 4
Views: 879

Keep persistent connection to server via http_client with different endpoints

Hello! I am using the `http_client` component to fetch and send data to an HTTPS server. This server has two endpoints: `/` (method: GET) — no headers required. `/state` (method: POST) — requires an Authorization header. I want to use a persistent session with this server so that the SSL session doe...
by DCSBL-
Fri Dec 09, 2022 3:36 pm
Forum: ESP-IDF
Topic: Remote signing of images with espsecure using yubikey
Replies: 5
Views: 2761

Re: Remote signing of images with espsecure using yubikey

Thank you! I will take a look!
by DCSBL-
Mon Dec 05, 2022 9:54 am
Forum: ESP-IDF
Topic: Remote signing of images with espsecure using yubikey
Replies: 5
Views: 2761

Re: Remote signing of images with espsecure using yubikey

Hey @ESP_igrr,

Is there any update on this, or at least some insights into if it is even possible? I am also curious if there are other HSM's to keep the sign process really secure in our CI/CD.