diff --git a/doc/doxygen/main_page.h b/doc/doxygen/main_page.h index 8023ac70..89d86f82 100644 --- a/doc/doxygen/main_page.h +++ b/doc/doxygen/main_page.h @@ -104,9 +104,14 @@ * * 2.1.0 * ----- - * * This version supports TLS via @ref altcp_api connection API - * * This version switches to cmake as the main build system (Makefile file - * lists are maintained for now) + * * Support TLS via new @ref altcp_api connection API (https, smtps, mqtt over TLS) + * * Switch to cmake as the main build system (Makefile file lists are still + * maintained for now) + * * Improve IPv6 support: support address scopes, support stateless DHCPv6, bugfixes + * * Add debug helper asserts to ensure threading/locking requirements are met + * * Add sys_mbox_trypost_fromisr() and tcpip_callbackmsg_trycallback_fromisr() + * (for FreeRTOS, mainly) + * * socket API: support poll(), sendmsg() and recvmsg(); fix problems on close * * Detailed Changelog * ------------------ diff --git a/src/core/altcp.c b/src/core/altcp.c index 54f7ad75..d46d6cdb 100644 --- a/src/core/altcp.c +++ b/src/core/altcp.c @@ -59,7 +59,7 @@ * ----------------- * An altcp allocator is created by the application by combining an allocator * callback function and a corresponding state, e.g.:\code{.c} - * static const unsigned char cert[] = {0x2D, "(see mbedTLS doc for how to create this)"}; + * static const unsigned char cert[] = {0x2D, ... (see mbedTLS doc for how to create this)}; * struct altcp_tls_config * conf = altcp_tls_create_config_client(cert, sizeof(cert)); * altcp_allocator_t tls_allocator = { * altcp_tls_alloc, conf