Fixes for the https fullstack-simulator demo
parent
6d9670101b
commit
34ec4140c7
|
@ -7,6 +7,7 @@ set(CMAKE_C_STANDARD_REQUIRED ON)
|
|||
|
||||
# wolfSSL configuration
|
||||
add_definitions(-DWOLFSSL_USER_SETTINGS)
|
||||
add_definitions(-DWOLFSSL_WOLFIP)
|
||||
|
||||
# FreeRTOS Kernel source files for POSIX port
|
||||
set(FREERTOS_PORT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/freertos/FreeRTOS-Kernel/portable/ThirdParty/GCC/Posix)
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
#define HTTPS_TASK_PRIORITY (tskIDLE_PRIORITY + 2)
|
||||
|
||||
/* Certificate paths */
|
||||
#define CERT_FILE "./certs/server-cert.pem"
|
||||
#define KEY_FILE "./certs/server-key.pem"
|
||||
#define CA_FILE "./certs/ca-cert.pem"
|
||||
#define CERT_FILE "../../../../wolfssl/certs/server-cert.pem"
|
||||
#define KEY_FILE "../../../../wolfssl/certs/server-key.pem"
|
||||
#define CA_FILE "../../../../wolfssl/certs/ca-cert.pem"
|
||||
|
||||
/* Initialize HTTPS server with wolfSSL and wolfIP */
|
||||
int https_server_init(struct wolfIP *ipstack);
|
||||
|
|
Loading…
Reference in New Issue