mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 06:32:00 +00:00
Add the HTTPS (HTTP over TLS) server sample application on top of the current HTTP Parser Library and mbedTLS. This code uses TLS to stablish a secure connection and HTTP parser to identify the request and the proper response. Jira: ZEP-799 Change-Id: Ifbbcd0347bec47d12158440e50a82dc2966334d3 Signed-off-by: Sergio Rodriguez <sergio.sf.rodriguez@intel.com> Signed-off-by: Flavio Santes <flavio.santes@intel.com>
35 lines
718 B
Plaintext
35 lines
718 B
Plaintext
CONFIG_NETWORKING=y
|
|
CONFIG_NET_TCP=y
|
|
CONFIG_RANDOM_GENERATOR=y
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
CONFIG_NET_LOG=y
|
|
CONFIG_NET_SLIP_TAP=y
|
|
CONFIG_INIT_STACKS=y
|
|
|
|
CONFIG_NET_NBUF_RX_COUNT=16
|
|
CONFIG_NET_NBUF_TX_COUNT=16
|
|
CONFIG_NET_NBUF_DATA_COUNT=16
|
|
|
|
CONFIG_NET_IPV6_RA_RDNSS=y
|
|
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=3
|
|
CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT=2
|
|
|
|
CONFIG_STDOUT_CONSOLE=y
|
|
|
|
CONFIG_HTTP_PARSER=y
|
|
|
|
# Enable IPv6 support
|
|
CONFIG_NET_IPV6=n
|
|
# Enable IPv4 support
|
|
CONFIG_NET_IPV4=y
|
|
|
|
CONFIG_NET_SAMPLES_IP_ADDRESSES=y
|
|
CONFIG_NET_SAMPLES_MY_IPV6_ADDR="2001:db8::1"
|
|
CONFIG_NET_SAMPLES_MY_IPV4_ADDR="192.0.2.1"
|
|
|
|
CONFIG_NET_MAX_CONTEXTS=16
|
|
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_MBEDTLS_BUILTIN=y
|
|
CONFIG_MBEDTLS_CFG_FILE="config-mini-tls1_2.h"
|