History log of /seL4-camkes-master/projects/lwip/src/core/altcp.c
Revision Date Author Comments
# 54a8112e 26-Sep-2018 Simon Goldschmidt <goldsimon@gmx.de>

Documentation improvements for 2.1.0 (changelog, altcp)


# b9fc8cae 24-Sep-2018 Simon Goldschmidt <goldsimon@gmx.de>

Documentation improvements for 2.1.0 (mainly altcp/altcp_tls)


# a7b43dae 20-Feb-2018 goldsimon <goldsimon@gmx.de>

altcp: default shutdown for both sides is close


# 3bd87e38 20-Feb-2018 goldsimon <goldsimon@gmx.de>

doc: altcp: keep altcp_alloc/altcp_free out of the docs

Those functions are for implementing altcp layers, not for applications


# fc3c1862 20-Feb-2018 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Improve altcp allocator documentation


# 842b9f44 19-Feb-2018 goldsimon <goldsimon@gmx.de>

altcp: simplify creating different types by adding an allocator concept

This is done with an example in the http_client

Signed-off-by: goldsimon <goldsimon@gmx.de>


# 9d120c59 27-Jun-2017 David Girault <david@dhgirault.fr>

altcp: fix altcp_free

call dealloc function in altcp_free() so it can be propagate it to inner_conn.


# b34f2d56 04-Apr-2017 goldsimon <goldsimon@gmx.de>

altcp: allocate altcp_pcbs from a pool, not from heap (new option MEMP_NUM_ALTCP_PCB defaults to MEMP_NUM_TCP_PCB)


# 51dbd1a7 30-Mar-2017 goldsimon <goldsimon@gmx.de>

altcp: added altcp_get_port()


# fbcdb4d9 29-Mar-2017 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Fix function name in altcp.c


# 537c258e 28-Mar-2017 goldsimon <goldsimon@gmx.de>

httpd/altcp: add forgotten functions


# 425b2dda 26-Mar-2017 goldsimon <goldsimon@gmx.de>

altcp_get_ip: added altcp_get_ip(), added default functions that only defer a call to the inner_conn (moved from tls_mbedtls to generic altcp)


# ab736a47 22-Mar-2017 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Add altcp to doxygen docs


# c18393b5 22-Mar-2017 goldsimon <goldsimon@gmx.de>

altcp: added 'addrinfo' and 'tcp_state' functions


# e8e247f2 22-Mar-2017 goldsimon <goldsimon@gmx.de>

Add "application layered TCP connection API (altcp)"

altcp is an abstraction layer that prevents applications linking against the
tcp.h functions but provides the same functionality. It is used to e.g. add
SSL/TLS or proxy-connect support to an application written for the tcp callback
API without that application knowing the protocol details.
Applications written against the altcp API are directly linked against the
tcp callback API for LWIP_ALTCP==0, but then cannot use layered protocols.


# ec24a2a4 20-Mar-2017 goldsimon <goldsimon@gmx.de>

Revert "httpd: regenerate example fs (fsdata.c) with current makefsdata"

This reverts commit 66fb52ff5cdfafecef9c0cc7b32bccee8b0f3e7f.


# 66fb52ff 20-Mar-2017 goldsimon <goldsimon@gmx.de>

httpd: regenerate example fs (fsdata.c) with current makefsdata