2016-10-27 15:58:04 +02:00
|
|
|
PKG_NAME=tinydtls
|
2019-03-21 14:43:47 +01:00
|
|
|
PKG_URL=https://github.com/eclipse/tinydtls.git
|
2023-02-25 14:57:26 +01:00
|
|
|
PKG_VERSION=5e14e4930b0f329f35809c623976df1e08ca4593
|
2017-01-08 21:55:47 +01:00
|
|
|
PKG_LICENSE=EPL-1.0,EDL-1.0
|
2016-10-27 15:58:04 +02:00
|
|
|
|
2019-10-02 12:47:02 +02:00
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
|
2018-01-16 10:31:56 +01:00
|
|
|
CFLAGS += -Wno-implicit-fallthrough
|
|
|
|
|
2019-06-27 15:18:37 +02:00
|
|
|
all:
|
2021-03-12 15:50:14 +01:00
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(PKG_SOURCE_DIR)/Makefile.riot
|
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/aes -f $(PKG_SOURCE_DIR)/aes/Makefile.riot
|
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/ecc -f $(PKG_SOURCE_DIR)/ecc/Makefile.riot
|
2016-10-27 15:58:04 +02:00
|
|
|
|
2018-08-03 17:56:34 +02:00
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
|
|
CFLAGS += -Wno-format-nonliteral
|
|
|
|
endif
|
2023-03-02 09:15:51 +01:00
|
|
|
|
|
|
|
ifneq (,$(filter gcoap,$(USEMODULE)))
|
|
|
|
# Configuring the buffer large enough that a full Gcoap packet can be
|
|
|
|
# encrypted or decrypted.
|
|
|
|
|
|
|
|
# This is the default in gcoap.h, which we don't have access to, so it is copied over.
|
|
|
|
CONFIG_GCOAP_PDU_BUF_SIZE := $(or $(CONFIG_GCOAP_PDU_BUF_SIZE),128)
|
|
|
|
|
|
|
|
# If there were another way to set up DTLS_MAX_BUF, we'd need to set the
|
|
|
|
# maximum of these here.
|
|
|
|
#
|
|
|
|
# 29 bytes are the overhead measured with Wireshark on packets exchanged in
|
|
|
|
# default configuration; adding some to be safe against variable size fields.
|
|
|
|
CFLAGS += "-DDTLS_MAX_BUF=($(CONFIG_GCOAP_PDU_BUF_SIZE) + 36)"
|
|
|
|
endif
|
2023-03-02 09:16:09 +01:00
|
|
|
|
|
|
|
# TinyDTLS emits several messages during connection establishment at the info
|
|
|
|
# level; this is way more verbose than common in RIOT.
|
|
|
|
TINYDTLS_LOG_LEVEL ?= LOG_WARNING
|
|
|
|
CFLAGS += -DLOG_LEVEL=$(TINYDTLS_LOG_LEVEL)
|