1. 07 2月, 2023 1 次提交
  2. 08 12月, 2022 1 次提交
  3. 19 1月, 2022 1 次提交
  4. 25 10月, 2021 1 次提交
    • A
      Add ALPN support to WiFiClientSecure (#5633) · 15bbd0a1
      Anthony Elder 提交于
      This adds a function to WiFiClientSecure to set the ALPN protocol.
      
      This is required for an MQTT client to connect to AWS IoT when using an AWS Custom Authorizer, as described here.
      
      Example code snippet:
      
      ...
      WiFiClientSecure wiFiClient;
      
      // ALPN protocol, needed with AWS custom authorizer
      const char *aws_protos[] = {"mqtt", NULL};
      
      void setup() {
        wiFiClient.setCACert(AWSCAPEM);
        wiFiClient.setAlpnProtocols(aws_protos);
      }
      ...
      15bbd0a1
  5. 08 10月, 2021 1 次提交
  6. 18 3月, 2021 1 次提交
  7. 21 12月, 2020 1 次提交
  8. 15 4月, 2019 1 次提交
  9. 03 12月, 2018 1 次提交
  10. 27 11月, 2018 1 次提交
  11. 14 5月, 2018 1 次提交
  12. 16 4月, 2018 1 次提交
  13. 24 8月, 2017 1 次提交
  14. 19 5月, 2017 1 次提交
    • C
      HTTPClient Port (#347) · 51a4432c
      copercini 提交于
      * Fix possible infinite loop in the example
      
      * Remove workaround of sockets always return -76 
      
      Remove workaround of sockets always return -76 (because it's fixed on IDF now)
      Remove delay during handshake (improving stability)
      
      * Remove unusable mbedtls_net of context creation
      
      * Fix bad destructor
      
      * Compatibility with WiFiClient for HTTPClient
      
      * Initial port from ESP8266
      
      Changed SHA1 fingerprint by Root CA verification
      Changed log system
      
      * Remove deprecated function
      51a4432c
  15. 10 3月, 2017 1 次提交
  16. 11 2月, 2017 1 次提交