renamed altcp_mbedtls files to altcp_tls_mbedtls

This commit is contained in:
goldsimon 2017-03-23 08:34:02 +01:00
parent ab736a4764
commit 1e26652d2e
5 changed files with 7 additions and 7 deletions

View File

@ -176,8 +176,8 @@ TFTPFILES=$(LWIPDIR)/apps/tftp/tftp_server.c
MQTTFILES=$(LWIPDIR)/apps/mqtt/mqtt.c
# ALTCP_TLS_MBEDTLS: MBEDTLS port of altcp_tls
ALTCP_TLS_MBEDTLS=$(LWIPDIR)/apps/altcp_tls/altcp_mbedtls.c \
$(LWIPDIR)/apps/altcp_tls/altcp_mbedtls_mem.c
ALTCP_TLS_MBEDTLS=$(LWIPDIR)/apps/altcp_tls/altcp_tls_mbedtls.c \
$(LWIPDIR)/apps/altcp_tls/altcp_tls_mbedtls_mem.c
# LWIPAPPFILES: All LWIP APPs
LWIPAPPFILES=$(SNMPFILES) \

View File

@ -64,8 +64,8 @@
#include "lwip/apps/altcp_tls.h"
#include "lwip/priv/altcp_priv.h"
#include "altcp_mbedtls_structs.h"
#include "altcp_mbedtls_mem.h"
#include "altcp_tls_mbedtls_structs.h"
#include "altcp_tls_mbedtls_mem.h"
/* @todo: which includes are really needed? */
#include "mbedtls/entropy.h"

View File

@ -52,8 +52,8 @@
#if LWIP_ALTCP /* don't build if not configured for use in lwipopts.h */
#include "altcp_mbedtls_mem.h"
#include "altcp_mbedtls_structs.h"
#include "altcp_tls_mbedtls_mem.h"
#include "altcp_tls_mbedtls_structs.h"
#include "lwip/mem.h"
#include "mbedtls/platform.h"

View File

@ -47,7 +47,7 @@
#if LWIP_ALTCP /* don't build if not configured for use in lwipopts.h */
#include "altcp_mbedtls_structs.h"
#include "altcp_tls_mbedtls_structs.h"
#ifdef __cplusplus
extern "C" {