From 0e870fd2349b07d4c86cebce8061e9cf16406d3c Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 9 Jun 2022 22:10:53 +0200 Subject: [PATCH 1/5] sha.h header moved from hwcrypto to esp32 --- src/HTTPConnection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTPConnection.hpp b/src/HTTPConnection.hpp index fb15d7a..bd23057 100644 --- a/src/HTTPConnection.hpp +++ b/src/HTTPConnection.hpp @@ -6,7 +6,7 @@ #include #include -#include +#include #include // Required for sockets From d4dd455eca9c6679d6af4192234ab3506ebe19c0 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 9 Jun 2022 22:14:29 +0200 Subject: [PATCH 2/5] CI builds on this branch --- .github/workflows/build-examples-master.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-examples-master.yml b/.github/workflows/build-examples-master.yml index 0bf6840..ab59fe5 100644 --- a/.github/workflows/build-examples-master.yml +++ b/.github/workflows/build-examples-master.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - exp-jack-sha-header jobs: build-examples: strategy: From 1cfcef49d18c836ba4ee7faf64928ef7efda7d28 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 9 Jun 2022 22:29:39 +0200 Subject: [PATCH 3/5] esp32/sha.h is also deprecated. Use sha/sha_parallel_engine.h --- src/HTTPConnection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTPConnection.hpp b/src/HTTPConnection.hpp index bd23057..adf8819 100644 --- a/src/HTTPConnection.hpp +++ b/src/HTTPConnection.hpp @@ -6,7 +6,7 @@ #include #include -#include +#include #include // Required for sockets From f593a71d9929f4c64d0e8915550345b20222af72 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 7 Oct 2022 22:50:58 +0200 Subject: [PATCH 4/5] Revert "CI builds on this branch" This reverts commit d4dd455eca9c6679d6af4192234ab3506ebe19c0. --- .github/workflows/build-examples-master.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-examples-master.yml b/.github/workflows/build-examples-master.yml index ab59fe5..0bf6840 100644 --- a/.github/workflows/build-examples-master.yml +++ b/.github/workflows/build-examples-master.yml @@ -4,7 +4,6 @@ on: push: branches: - master - - exp-jack-sha-header jobs: build-examples: strategy: From c79117b96bd85aa5dc3700c1f24da2c128fe64a3 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 14 Oct 2022 00:20:19 +0100 Subject: [PATCH 5/5] Quick workaround for TAG not being defined --- src/WebsocketHandler.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/WebsocketHandler.cpp b/src/WebsocketHandler.cpp index 5e4c1d1..c0c3cc9 100644 --- a/src/WebsocketHandler.cpp +++ b/src/WebsocketHandler.cpp @@ -1,5 +1,9 @@ #include "WebsocketHandler.hpp" +#ifndef TAG +static const char *TAG = "WebsocketHandler"; +#endif + namespace httpsserver { /**