Skip to content

Commit f8748e0

Browse files
authored
Merge pull request #862 from david-cermak/fix/mbedtls_cookie
fix(mbedtls_cxx): Enable mbedtls cookie support
2 parents e8ce8f4 + 479122b commit f8748e0

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/tls_cxx__build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }}
2626
shell: bash
2727
run: |
28+
if [[ "${{ matrix.idf_ver }}" != "latest" ]]; then
29+
export EXPECTED_WARNING="unknown kconfig symbol 'MBEDTLS_SSL_COOKIE_C'"
30+
fi
2831
. ${IDF_PATH}/export.sh
2932
pip install idf-component-manager idf-build-apps --upgrade
3033
python ./ci/build_apps.py ./components/mbedtls_cxx/${{ matrix.test.path }} -vv --preserve-all
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
2+
CONFIG_MBEDTLS_SSL_COOKIE_C=y
23
CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=8192
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
CONFIG_IDF_TARGET="esp32"
22
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
3+
CONFIG_MBEDTLS_SSL_COOKIE_C=y
34
CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=8192

0 commit comments

Comments
 (0)