2011-01-06 12:28:03 +00:00
|
|
|
/**
|
2018-01-23 15:36:58 +00:00
|
|
|
* \file doc_tcpip.h
|
|
|
|
*
|
|
|
|
* \brief TCP/IP communication module documentation file.
|
|
|
|
*/
|
|
|
|
/*
|
2015-08-06 08:59:26 +00:00
|
|
|
*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2011-01-06 12:28:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup tcpip_communication_module TCP/IP communication module
|
2013-09-10 14:16:50 +00:00
|
|
|
*
|
2011-01-06 12:28:03 +00:00
|
|
|
* The TCP/IP communication module provides for a channel of
|
2013-09-10 14:16:50 +00:00
|
|
|
* communication for the \link ssltls_communication_module SSL/TLS communication
|
|
|
|
* module\endlink to use.
|
|
|
|
* In the TCP/IP-model it provides for communication up to the Transport
|
|
|
|
* (or Host-to-host) layer.
|
2011-01-06 12:28:03 +00:00
|
|
|
* SSL/TLS resides on top of that, in the Application layer, and makes use of
|
|
|
|
* its basic provisions:
|
2015-05-14 11:55:51 +00:00
|
|
|
* - listening on a port (see \c mbedtls_net_bind()).
|
|
|
|
* - accepting a connection (through \c mbedtls_net_accept()).
|
|
|
|
* - read/write (through \c mbedtls_net_recv()/\c mbedtls_net_send()).
|
|
|
|
* - close a connection (through \c mbedtls_net_close()).
|
2011-01-06 12:28:03 +00:00
|
|
|
*
|
2013-09-10 14:16:50 +00:00
|
|
|
* This way you have the means to, for example, implement and use an UDP or
|
2011-01-06 12:28:03 +00:00
|
|
|
* IPSec communication solution as a basis.
|
2013-09-10 14:16:50 +00:00
|
|
|
*
|
2011-01-06 12:28:03 +00:00
|
|
|
* This module can be used at server- and clientside to provide a basic
|
|
|
|
* means of communication over the internet.
|
|
|
|
*/
|