Search found 1 match

by Yaman Seyravan
Wed Jul 19, 2023 11:11 pm
Forum: ESP-IDF
Topic: Cant figure out how to setup an HTTPS server using esp-idf with rust libraries
Replies: 0
Views: 1600

Cant figure out how to setup an HTTPS server using esp-idf with rust libraries

Here is the client setup code I'm using: (it has an esp_crt_bundle_attach config for https connection, no problems there) [ let mut client = EspHttpClient::new(&EspHttpClientConfiguration { crt_bundle_attach: Some(esp_idf_sys::esp_crt_bundle_attach), ..Default::default() })?; ] But for the server, I...