]> granicus.if.org Git - esp-idf/commit
Add a 'esp_https_server' component allowing to use http_server with OpenSSL
authorOndřej Hruška <ondra@ondrovo.com>
Wed, 31 Oct 2018 22:17:00 +0000 (23:17 +0100)
committerbot <bot@espressif.com>
Mon, 19 Nov 2018 04:00:21 +0000 (04:00 +0000)
commit4dd0fa61e900b6ccce11897a0a49d79b9d115636
tree3a97c801a930202a89eaf34671bd62b0ef30235d
parenta10fc02dd9ccba9a9073ce1711be15de05c491c7
Add a 'esp_https_server' component allowing to use http_server with OpenSSL
15 files changed:
components/esp_https_server/CMakeLists.txt [new file with mode: 0644]
components/esp_https_server/README.md [new file with mode: 0644]
components/esp_https_server/component.mk [new file with mode: 0644]
components/esp_https_server/include/esp_https_server.h [new file with mode: 0644]
components/esp_https_server/src/https_server.c [new file with mode: 0644]
examples/protocols/https_server/CMakeLists.txt [new file with mode: 0644]
examples/protocols/https_server/Makefile [new file with mode: 0644]
examples/protocols/https_server/README.md [new file with mode: 0644]
examples/protocols/https_server/main/CMakeLists.txt [new file with mode: 0644]
examples/protocols/https_server/main/Kconfig.projbuild [new file with mode: 0644]
examples/protocols/https_server/main/certs/cacert.pem [new file with mode: 0644]
examples/protocols/https_server/main/certs/gencert.sh [new file with mode: 0644]
examples/protocols/https_server/main/certs/prvtkey.pem [new file with mode: 0644]
examples/protocols/https_server/main/component.mk [new file with mode: 0644]
examples/protocols/https_server/main/main.c [new file with mode: 0644]