Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file net_sockets.h |
| 3 | * |
Simon Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 4 | * \brief Network sockets abstraction layer to integrate Mbed TLS into a |
| 5 | * BSD-style sockets API. |
| 6 | * |
| 7 | * The network sockets module provides an example integration of the |
| 8 | * Mbed TLS library into a BSD sockets implementation. The module is |
Simon Butcher | 5cf4d06 | 2018-07-23 14:36:40 +0100 | [diff] [blame] | 9 | * intended to be an example of how Mbed TLS can be integrated into a |
| 10 | * networking stack, as well as to be Mbed TLS's network integration |
| 11 | * for its supported platforms. |
Simon Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 12 | * |
Simon Butcher | 5cf4d06 | 2018-07-23 14:36:40 +0100 | [diff] [blame] | 13 | * The module is intended only to be used with the Mbed TLS library and |
| 14 | * is not intended to be used by third party application software |
| 15 | * directly. |
Simon Butcher | ca33caf | 2018-07-18 17:52:14 +0100 | [diff] [blame] | 16 | * |
| 17 | * The supported platforms are as follows: |
| 18 | * * Microsoft Windows and Windows CE |
| 19 | * * POSIX/Unix platforms including Linux, OS X |
| 20 | * |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 21 | */ |
| 22 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 23 | * Copyright The Mbed TLS Contributors |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 24 | * SPDX-License-Identifier: Apache-2.0 |
| 25 | * |
| 26 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 27 | * not use this file except in compliance with the License. |
| 28 | * You may obtain a copy of the License at |
| 29 | * |
| 30 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 31 | * |
| 32 | * Unless required by applicable law or agreed to in writing, software |
| 33 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 34 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 35 | * See the License for the specific language governing permissions and |
| 36 | * limitations under the License. |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 37 | */ |
| 38 | #ifndef MBEDTLS_NET_SOCKETS_H |
| 39 | #define MBEDTLS_NET_SOCKETS_H |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 40 | #include "mbedtls/private_access.h" |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 41 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 42 | #include "mbedtls/build_info.h" |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 43 | |
Jaeden Amero | 6609aef | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 44 | #include "mbedtls/ssl.h" |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 45 | |
| 46 | #include <stddef.h> |
| 47 | #include <stdint.h> |
| 48 | |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 49 | /** Failed to open a socket. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 50 | #define MBEDTLS_ERR_NET_SOCKET_FAILED -0x0042 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 51 | /** The connection to the given server / port failed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 52 | #define MBEDTLS_ERR_NET_CONNECT_FAILED -0x0044 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 53 | /** Binding of the socket failed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 54 | #define MBEDTLS_ERR_NET_BIND_FAILED -0x0046 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 55 | /** Could not listen on the socket. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 56 | #define MBEDTLS_ERR_NET_LISTEN_FAILED -0x0048 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 57 | /** Could not accept the incoming connection. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 58 | #define MBEDTLS_ERR_NET_ACCEPT_FAILED -0x004A |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 59 | /** Reading information from the socket failed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 60 | #define MBEDTLS_ERR_NET_RECV_FAILED -0x004C |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 61 | /** Sending information through the socket failed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 62 | #define MBEDTLS_ERR_NET_SEND_FAILED -0x004E |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 63 | /** Connection was reset by peer. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 64 | #define MBEDTLS_ERR_NET_CONN_RESET -0x0050 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 65 | /** Failed to get an IP address for the given hostname. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 66 | #define MBEDTLS_ERR_NET_UNKNOWN_HOST -0x0052 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 67 | /** Buffer is too small to hold the data. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 68 | #define MBEDTLS_ERR_NET_BUFFER_TOO_SMALL -0x0043 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 69 | /** The context is invalid, eg because it was free()ed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 70 | #define MBEDTLS_ERR_NET_INVALID_CONTEXT -0x0045 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 71 | /** Polling the net context failed. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 72 | #define MBEDTLS_ERR_NET_POLL_FAILED -0x0047 |
Gilles Peskine | d297157 | 2021-07-26 18:48:10 +0200 | [diff] [blame] | 73 | /** Input invalid. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 74 | #define MBEDTLS_ERR_NET_BAD_INPUT_DATA -0x0049 |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 75 | |
Mateusz Starzyk | 16fec33 | 2021-07-22 16:43:35 +0200 | [diff] [blame] | 76 | /** The backlog that listen() should use. */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 77 | #define MBEDTLS_NET_LISTEN_BACKLOG 10 |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 78 | |
Mateusz Starzyk | 16fec33 | 2021-07-22 16:43:35 +0200 | [diff] [blame] | 79 | /** The TCP transport protocol */ |
| 80 | #define MBEDTLS_NET_PROTO_TCP 0 |
| 81 | /** The UDP transport protocol */ |
| 82 | #define MBEDTLS_NET_PROTO_UDP 1 |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 83 | |
Mateusz Starzyk | 16fec33 | 2021-07-22 16:43:35 +0200 | [diff] [blame] | 84 | /** Used in \c mbedtls_net_poll to check for pending data */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 85 | #define MBEDTLS_NET_POLL_READ 1 |
Mateusz Starzyk | 16fec33 | 2021-07-22 16:43:35 +0200 | [diff] [blame] | 86 | /** Used in \c mbedtls_net_poll to check if write possible */ |
| 87 | #define MBEDTLS_NET_POLL_WRITE 2 |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 88 | |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 89 | #ifdef __cplusplus |
| 90 | extern "C" { |
| 91 | #endif |
| 92 | |
| 93 | /** |
| 94 | * Wrapper type for sockets. |
| 95 | * |
| 96 | * Currently backed by just a file descriptor, but might be more in the future |
| 97 | * (eg two file descriptors for combined IPv4 + IPv6 support, or additional |
| 98 | * structures for hand-made UDP demultiplexing). |
| 99 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 100 | typedef struct mbedtls_net_context { |
| 101 | int MBEDTLS_PRIVATE(fd); /**< The underlying file descriptor */ |
| 102 | } mbedtls_net_context; |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 103 | |
| 104 | /** |
| 105 | * \brief Initialize a context |
| 106 | * Just makes the context ready to be used or freed safely. |
| 107 | * |
| 108 | * \param ctx Context to initialize |
| 109 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 110 | void mbedtls_net_init(mbedtls_net_context *ctx); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 111 | |
| 112 | /** |
| 113 | * \brief Initiate a connection with host:port in the given protocol |
| 114 | * |
| 115 | * \param ctx Socket to use |
| 116 | * \param host Host to connect to |
| 117 | * \param port Port to connect to |
| 118 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 119 | * |
| 120 | * \return 0 if successful, or one of: |
| 121 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 122 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
| 123 | * MBEDTLS_ERR_NET_CONNECT_FAILED |
| 124 | * |
| 125 | * \note Sets the socket in connected mode even with UDP. |
| 126 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 127 | int mbedtls_net_connect(mbedtls_net_context *ctx, |
| 128 | const char *host, |
| 129 | const char *port, |
| 130 | int proto); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 131 | |
| 132 | /** |
| 133 | * \brief Create a receiving socket on bind_ip:port in the chosen |
| 134 | * protocol. If bind_ip == NULL, all interfaces are bound. |
| 135 | * |
| 136 | * \param ctx Socket to use |
| 137 | * \param bind_ip IP to bind to, can be NULL |
| 138 | * \param port Port number to use |
| 139 | * \param proto Protocol: MBEDTLS_NET_PROTO_TCP or MBEDTLS_NET_PROTO_UDP |
| 140 | * |
| 141 | * \return 0 if successful, or one of: |
| 142 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
Gilles Peskine | 9264e01 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 143 | * MBEDTLS_ERR_NET_UNKNOWN_HOST, |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 144 | * MBEDTLS_ERR_NET_BIND_FAILED, |
| 145 | * MBEDTLS_ERR_NET_LISTEN_FAILED |
| 146 | * |
| 147 | * \note Regardless of the protocol, opens the sockets and binds it. |
| 148 | * In addition, make the socket listening if protocol is TCP. |
| 149 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 150 | int mbedtls_net_bind(mbedtls_net_context *ctx, |
| 151 | const char *bind_ip, |
| 152 | const char *port, |
| 153 | int proto); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 154 | |
| 155 | /** |
| 156 | * \brief Accept a connection from a remote client |
| 157 | * |
| 158 | * \param bind_ctx Relevant socket |
| 159 | * \param client_ctx Will contain the connected client socket |
aitap | 4dab551 | 2017-01-13 13:22:31 +0400 | [diff] [blame] | 160 | * \param client_ip Will contain the client IP address, can be NULL |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 161 | * \param buf_size Size of the client_ip buffer |
aitap | 4dab551 | 2017-01-13 13:22:31 +0400 | [diff] [blame] | 162 | * \param ip_len Will receive the size of the client IP written, |
Ivan Krylov | 5cb1f09 | 2018-03-24 18:48:04 +0300 | [diff] [blame] | 163 | * can be NULL if client_ip is null |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 164 | * |
| 165 | * \return 0 if successful, or |
Gilles Peskine | 9264e01 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 166 | * MBEDTLS_ERR_NET_SOCKET_FAILED, |
| 167 | * MBEDTLS_ERR_NET_BIND_FAILED, |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 168 | * MBEDTLS_ERR_NET_ACCEPT_FAILED, or |
| 169 | * MBEDTLS_ERR_NET_BUFFER_TOO_SMALL if buf_size is too small, |
| 170 | * MBEDTLS_ERR_SSL_WANT_READ if bind_fd was set to |
| 171 | * non-blocking and accept() would block. |
| 172 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 173 | int mbedtls_net_accept(mbedtls_net_context *bind_ctx, |
| 174 | mbedtls_net_context *client_ctx, |
| 175 | void *client_ip, |
| 176 | size_t buf_size, |
| 177 | size_t *ip_len); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 178 | |
| 179 | /** |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 180 | * \brief Check and wait for the context to be ready for read/write |
| 181 | * |
Gilles Peskine | e28f236 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 182 | * \note The current implementation of this function uses |
| 183 | * select() and returns an error if the file descriptor |
Gilles Peskine | c8dab5b | 2021-03-01 11:39:21 +0100 | [diff] [blame] | 184 | * is \c FD_SETSIZE or greater. |
Gilles Peskine | e28f236 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 185 | * |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 186 | * \param ctx Socket to check |
| 187 | * \param rw Bitflag composed of MBEDTLS_NET_POLL_READ and |
| 188 | * MBEDTLS_NET_POLL_WRITE specifying the events |
| 189 | * to wait for: |
| 190 | * - If MBEDTLS_NET_POLL_READ is set, the function |
| 191 | * will return as soon as the net context is available |
| 192 | * for reading. |
| 193 | * - If MBEDTLS_NET_POLL_WRITE is set, the function |
| 194 | * will return as soon as the net context is available |
| 195 | * for writing. |
| 196 | * \param timeout Maximal amount of time to wait before returning, |
| 197 | * in milliseconds. If \c timeout is zero, the |
| 198 | * function returns immediately. If \c timeout is |
| 199 | * -1u, the function blocks potentially indefinitely. |
| 200 | * |
| 201 | * \return Bitmask composed of MBEDTLS_NET_POLL_READ/WRITE |
| 202 | * on success or timeout, or a negative return code otherwise. |
| 203 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 204 | int mbedtls_net_poll(mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout); |
Hanno Becker | e09ca3d | 2017-05-22 15:06:06 +0100 | [diff] [blame] | 205 | |
| 206 | /** |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 207 | * \brief Set the socket blocking |
| 208 | * |
| 209 | * \param ctx Socket to set |
| 210 | * |
| 211 | * \return 0 if successful, or a non-zero error code |
| 212 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 213 | int mbedtls_net_set_block(mbedtls_net_context *ctx); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 214 | |
| 215 | /** |
| 216 | * \brief Set the socket non-blocking |
| 217 | * |
| 218 | * \param ctx Socket to set |
| 219 | * |
| 220 | * \return 0 if successful, or a non-zero error code |
| 221 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 222 | int mbedtls_net_set_nonblock(mbedtls_net_context *ctx); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 223 | |
| 224 | /** |
| 225 | * \brief Portable usleep helper |
| 226 | * |
| 227 | * \param usec Amount of microseconds to sleep |
| 228 | * |
| 229 | * \note Real amount of time slept will not be less than |
| 230 | * select()'s timeout granularity (typically, 10ms). |
| 231 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 232 | void mbedtls_net_usleep(unsigned long usec); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 233 | |
| 234 | /** |
| 235 | * \brief Read at most 'len' characters. If no error occurs, |
| 236 | * the actual amount read is returned. |
| 237 | * |
| 238 | * \param ctx Socket |
| 239 | * \param buf The buffer to write to |
| 240 | * \param len Maximum length of the buffer |
| 241 | * |
| 242 | * \return the number of bytes received, |
| 243 | * or a non-zero error code; with a non-blocking socket, |
| 244 | * MBEDTLS_ERR_SSL_WANT_READ indicates read() would block. |
| 245 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 246 | int mbedtls_net_recv(void *ctx, unsigned char *buf, size_t len); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 247 | |
| 248 | /** |
| 249 | * \brief Write at most 'len' characters. If no error occurs, |
| 250 | * the actual amount read is returned. |
| 251 | * |
| 252 | * \param ctx Socket |
| 253 | * \param buf The buffer to read from |
| 254 | * \param len The length of the buffer |
| 255 | * |
| 256 | * \return the number of bytes sent, |
| 257 | * or a non-zero error code; with a non-blocking socket, |
| 258 | * MBEDTLS_ERR_SSL_WANT_WRITE indicates write() would block. |
| 259 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 260 | int mbedtls_net_send(void *ctx, const unsigned char *buf, size_t len); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 261 | |
| 262 | /** |
| 263 | * \brief Read at most 'len' characters, blocking for at most |
| 264 | * 'timeout' seconds. If no error occurs, the actual amount |
| 265 | * read is returned. |
| 266 | * |
Gilles Peskine | e28f236 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 267 | * \note The current implementation of this function uses |
| 268 | * select() and returns an error if the file descriptor |
Gilles Peskine | c8dab5b | 2021-03-01 11:39:21 +0100 | [diff] [blame] | 269 | * is \c FD_SETSIZE or greater. |
Gilles Peskine | e28f236 | 2021-02-24 19:51:23 +0100 | [diff] [blame] | 270 | * |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 271 | * \param ctx Socket |
| 272 | * \param buf The buffer to write to |
| 273 | * \param len Maximum length of the buffer |
| 274 | * \param timeout Maximum number of milliseconds to wait for data |
| 275 | * 0 means no timeout (wait forever) |
| 276 | * |
Gilles Peskine | 9264e01 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 277 | * \return The number of bytes received if successful. |
| 278 | * MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out. |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 279 | * MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal. |
Gilles Peskine | 9264e01 | 2021-03-03 12:25:06 +0100 | [diff] [blame] | 280 | * Another negative error code (MBEDTLS_ERR_NET_xxx) |
| 281 | * for other failures. |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 282 | * |
| 283 | * \note This function will block (until data becomes available or |
| 284 | * timeout is reached) even if the socket is set to |
| 285 | * non-blocking. Handling timeouts with non-blocking reads |
| 286 | * requires a different strategy. |
| 287 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 288 | int mbedtls_net_recv_timeout(void *ctx, |
| 289 | unsigned char *buf, |
| 290 | size_t len, |
| 291 | uint32_t timeout); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 292 | |
| 293 | /** |
Robert Larsen | df8e511 | 2019-08-23 10:55:47 +0200 | [diff] [blame] | 294 | * \brief Closes down the connection and free associated data |
| 295 | * |
| 296 | * \param ctx The context to close |
| 297 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 298 | void mbedtls_net_close(mbedtls_net_context *ctx); |
Robert Larsen | df8e511 | 2019-08-23 10:55:47 +0200 | [diff] [blame] | 299 | |
| 300 | /** |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 301 | * \brief Gracefully shutdown the connection and free associated data |
| 302 | * |
| 303 | * \param ctx The context to free |
| 304 | */ |
Mateusz Starzyk | c0eabdc | 2021-08-03 14:09:02 +0200 | [diff] [blame^] | 305 | void mbedtls_net_free(mbedtls_net_context *ctx); |
Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 306 | |
| 307 | #ifdef __cplusplus |
| 308 | } |
| 309 | #endif |
| 310 | |
| 311 | #endif /* net_sockets.h */ |