mbedTLS
mbedtls_net_close()
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (3/5)...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
mbedtls_net_close()
mbedtls_net_close() function
Closes down the connection and free associated data
Syntax
Show:
Summary
Declaration
from
net_sockets.h:282
void
mbedtls_net_close
(
mbedtls_net_context
*
ctx
)
;
Arguments
Argument
Description
ctx
The context to close
Notes
This function frees and clears data associated with the context but does not free the memory pointed to by \p ctx. This memory is the responsibility of the caller.
Related Functions
Found 9 other functions taking a
mbedtls_net_context
argument:
Function
Description
mbedtls_net_init()
Initialize a context Just makes the context ready to be used or freed safely.
mbedtls_net_free()
Gracefully shutdown the connection and free associated data
mbedtls_net_connect()
Initiate a connection with host:port in the given protocol
net_would_block()
mbedtls_net_bind()
Create a receiving socket on bind_ip:port in the chosen protocol. If bind_ip == NULL, all interfaces are bound.
mbedtls_net_accept()
Accept a connection from a remote client
mbedtls_net_set_block()
Set the socket blocking
mbedtls_net_set_nonblock()
Set the socket non-blocking
mbedtls_net_poll()
Check and wait for the context to be ready for read/write
Examples
References
from
examples
Code
Location
void
mbedtls_net_close
(
mbedtls_net_context
*
ctx
)
;
net_sockets.h:282
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out