]> git.meshlink.io Git - meshlink-tiny/blob - src/meshlink-tiny.h
5cb9c5edeec73b70629028d8c7378a15150eb17c
[meshlink-tiny] / src / meshlink-tiny.h
1 #ifndef MESHLINK_H
2 #define MESHLINK_H
3
4 /*
5     meshlink-tiny.h -- MeshLink API
6     Copyright (C) 2014-2021 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #include <stdint.h>
24 #include <stdbool.h>
25 #include <stddef.h>
26 #include <unistd.h>
27
28 #if defined(_WIN32)
29 #include <winsock2.h>
30 #else
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #endif
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 /// The length in bytes of a signature made with meshlink_sign()
40 #define MESHLINK_SIGLEN (64ul)
41
42 // The maximum length of fingerprints
43 #define MESHLINK_FINGERPRINTLEN (64ul)
44
45 /// A handle for an instance of MeshLink.
46 typedef struct meshlink_handle meshlink_handle_t;
47
48 /// A handle for a MeshLink node.
49 typedef struct meshlink_node meshlink_node_t;
50
51 /// A struct containing all parameters used for opening a mesh.
52 typedef struct meshlink_open_params meshlink_open_params_t;
53
54 /// Code of most recent error encountered.
55 typedef enum {
56         MESHLINK_OK,           ///< Everything is fine
57         MESHLINK_EINVAL,       ///< Invalid parameter(s) to function call
58         MESHLINK_ENOMEM,       ///< Out of memory
59         MESHLINK_ENOENT,       ///< Node is not known
60         MESHLINK_EEXIST,       ///< Node already exists
61         MESHLINK_EINTERNAL,    ///< MeshLink internal error
62         MESHLINK_ERESOLV,      ///< MeshLink could not resolve a hostname
63         MESHLINK_ESTORAGE,     ///< MeshLink could not load or write data from/to disk
64         MESHLINK_ENETWORK,     ///< MeshLink encountered a network error
65         MESHLINK_EPEER,        ///< A peer caused an error
66         MESHLINK_ENOTSUP,      ///< The operation is not supported in the current configuration of MeshLink
67         MESHLINK_EBUSY,        ///< The MeshLink instance is already in use by another process
68         MESHLINK_EBLACKLISTED  ///< The operation is not allowed because the node is blacklisted
69 } meshlink_errno_t;
70
71 /// Device class
72 typedef enum {
73         DEV_CLASS_BACKBONE = 0,
74         DEV_CLASS_STATIONARY = 1,
75         DEV_CLASS_PORTABLE = 2,
76         DEV_CLASS_UNKNOWN = 3,
77         DEV_CLASS_COUNT
78 } dev_class_t;
79
80 /// Storage policy
81 typedef enum {
82         MESHLINK_STORAGE_ENABLED,    ///< Store all updates.
83         MESHLINK_STORAGE_DISABLED,   ///< Don't store any updates.
84         MESHLINK_STORAGE_KEYS_ONLY   ///< Only store updates when a node's key has changed.
85 } meshlink_storage_policy_t;
86
87 /// Invitation flags
88 static const uint32_t MESHLINK_INVITE_LOCAL = 1;    // Only use local addresses in the URL
89 static const uint32_t MESHLINK_INVITE_PUBLIC = 2;   // Only use public or canonical addresses in the URL
90 static const uint32_t MESHLINK_INVITE_IPV4 = 4;     // Only use IPv4 addresses in the URL
91 static const uint32_t MESHLINK_INVITE_IPV6 = 8;     // Only use IPv6 addresses in the URL
92 static const uint32_t MESHLINK_INVITE_NUMERIC = 16; // Don't look up hostnames
93
94 /// A variable holding the last encountered error from MeshLink.
95 /** This is a thread local variable that contains the error code of the most recent error
96  *  encountered by a MeshLink API function called in the current thread.
97  *  The variable is only updated when an error is encountered, and is not reset to MESHLINK_OK
98  *  if a function returned successfully.
99  */
100 extern __thread meshlink_errno_t meshlink_errno;
101
102 #ifndef MESHLINK_INTERNAL_H
103
104 struct meshlink_handle {
105         const char *const name; ///< Textual name of ourself. It is stored in a nul-terminated C string, which is allocated by MeshLink.
106         void *priv;             ///< Private pointer which may be set freely by the application, and is never used or modified by MeshLink.
107 };
108
109 struct meshlink_node {
110         const char *const name; ///< Textual name of this node. It is stored in a nul-terminated C string, which is allocated by MeshLink.
111         void *priv;             ///< Private pointer which may be set freely by the application, and is never used or modified by MeshLink.
112 };
113
114 #endif // MESHLINK_INTERNAL_H
115
116 /// Get the text for the given MeshLink error code.
117 /** This function returns a pointer to the string containing the description of the given error code.
118  *
119  *  @param err      An error code returned by MeshLink.
120  *
121  *  @return         A pointer to a string containing the description of the error code.
122  *                  The pointer is to static storage that is valid for the lifetime of the application.
123  *                  This function will always return a valid pointer, even if an invalid error code has been passed.
124  */
125 const char *meshlink_strerror(meshlink_errno_t err) __attribute__((__warn_unused_result__));
126
127 /// Create a new meshlink_open_params_t struct.
128 /** This function allocates and initializes a new meshlink_open_params_t struct that can be passed to meshlink_open_ex().
129  *  The resulting struct may be reused for multiple calls to meshlink_open_ex().
130  *  After the last use, the application must free this struct using meshlink_open_params_free().
131  *
132  *  @param confbase The directory in which MeshLink will store its configuration files.
133  *                  After the function returns, the application is free to overwrite or free @a confbase.
134  *  @param name     The name which this instance of the application will use in the mesh.
135  *                  After the function returns, the application is free to overwrite or free @a name.
136  *                  If NULL is passed as the name, the name used last time the MeshLink instance was initialized is used.
137  *  @param appname  The application name which will be used in the mesh.
138  *                  After the function returns, the application is free to overwrite or free @a name.
139  *  @param devclass The device class which will be used in the mesh.
140  *
141  *  @return         A pointer to a meshlink_open_params_t which can be passed to meshlink_open_ex(), or NULL in case of an error.
142  *                  The pointer is valid until meshlink_open_params_free() is called.
143  */
144 meshlink_open_params_t *meshlink_open_params_init(const char *confbase, const char *name, const char *appname, dev_class_t devclass) __attribute__((__warn_unused_result__));
145
146 /// Free a meshlink_open_params_t struct.
147 /** This function frees a meshlink_open_params_t struct and all resources associated with it.
148  *
149  *  @param params   A pointer to a meshlink_open_params_t which must have been created earlier with meshlink_open_params_init().
150  */
151 void meshlink_open_params_free(meshlink_open_params_t *params);
152
153 /// Set the network namespace MeshLink should use.
154 /** This function changes the open parameters to use the given netns filedescriptor.
155  *
156  *  @param params   A pointer to a meshlink_open_params_t which must have been created earlier with meshlink_open_params_init().
157  *  @param netns    A filedescriptor that must point to a valid network namespace, or -1 to have MeshLink use the same namespace as the calling thread.
158  *
159  *  @return         This function will return true if the open parameters have been successfully updated, false otherwise.
160  */
161 bool meshlink_open_params_set_netns(meshlink_open_params_t *params, int netns) __attribute__((__warn_unused_result__));
162
163 /// Set the encryption key MeshLink should use for local storage.
164 /** This function changes the open parameters to use the given key for encrypting MeshLink's own configuration files.
165  *
166  *  @param params   A pointer to a meshlink_open_params_t which must have been created earlier with meshlink_open_params_init().
167  *  @param key      A pointer to a key, or NULL in case no encryption should be used.
168  *  @param keylen   The length of the given key, or 0 in case no encryption should be used.
169  *
170  *  @return         This function will return true if the open parameters have been successfully updated, false otherwise.
171  */
172 bool meshlink_open_params_set_storage_key(meshlink_open_params_t *params, const void *key, size_t keylen) __attribute__((__warn_unused_result__));
173
174 /// Set the encryption key MeshLink should use for local storage.
175 /** This function changes the open parameters to use the given storage policy.
176  *
177  *  @param params   A pointer to a meshlink_open_params_t which must have been created earlier with meshlink_open_params_init().
178  *  @param policy   The storage policy to use.
179  *
180  *  @return         This function will return true if the open parameters have been successfully updated, false otherwise.
181  */
182 bool meshlink_open_params_set_storage_policy(meshlink_open_params_t *params, meshlink_storage_policy_t policy) __attribute__((__warn_unused_result__));
183
184 /// Set the filename of the lockfile.
185 /** This function changes the path of the lockfile used to ensure only one instance of MeshLink can be open at the same time.
186  *  If an application changes this, it must always set it to the same location.
187  *
188  *  @param params   A pointer to a meshlink_open_params_t which must have been created earlier with meshlink_open_params_init().
189  *  @param filename The filename of the lockfile.
190  *
191  *  @return         This function will return true if the open parameters have been successfully updated, false otherwise.
192  */
193 bool meshlink_open_params_set_lock_filename(meshlink_open_params_t *params, const char *filename) __attribute__((__warn_unused_result__));
194
195 /// Open or create a MeshLink instance.
196 /** This function opens or creates a MeshLink instance.
197  *  All parameters needed by MeshLink are passed via a meshlink_open_params_t struct,
198  *  which must have been initialized earlier by the application.
199  *
200  *  This function returns a pointer to a struct meshlink_handle that will be allocated by MeshLink.
201  *  When the application does no longer need to use this handle, it must call meshlink_close() to
202  *  free its resources.
203  *
204  *  This function does not start any network I/O yet. The application should
205  *  first set callbacks, and then call meshlink_start().
206  *
207  *  @param params   A pointer to a meshlink_open_params_t which must be filled in by the application.
208  *                  After the function returns, the application is free to reuse or free @a params.
209  *
210  *  @return         A pointer to a struct meshlink_handle which represents this instance of MeshLink, or NULL in case of an error.
211  *                  The pointer is valid until meshlink_close() is called.
212  */
213 struct meshlink_handle *meshlink_open_ex(const meshlink_open_params_t *params) __attribute__((__warn_unused_result__));
214
215 /// Open or create a MeshLink instance.
216 /** This function opens or creates a MeshLink instance.
217  *  The state is stored in the configuration directory passed in the variable @a confbase.
218  *  If the configuration directory does not exist yet, for example when it is the first time
219  *  this instance is opened, the configuration directory will be automatically created and initialized.
220  *  However, the parent directory should already exist, otherwise an error will be returned.
221  *
222  *  The name given should be a unique identifier for this instance.
223  *
224  *  This function returns a pointer to a struct meshlink_handle that will be allocated by MeshLink.
225  *  When the application does no longer need to use this handle, it must call meshlink_close() to
226  *  free its resources.
227  *
228  *  This function does not start any network I/O yet. The application should
229  *  first set callbacks, and then call meshlink_start().
230  *
231  *  @param confbase The directory in which MeshLink will store its configuration files.
232  *                  After the function returns, the application is free to overwrite or free @a confbase.
233  *  @param name     The name which this instance of the application will use in the mesh.
234  *                  After the function returns, the application is free to overwrite or free @a name.
235  *                  If NULL is passed as the name, the name used last time the MeshLink instance was initialized is used.
236  *  @param appname  The application name which will be used in the mesh.
237  *                  After the function returns, the application is free to overwrite or free @a name.
238  *  @param devclass The device class which will be used in the mesh.
239  *
240  *  @return         A pointer to a struct meshlink_handle which represents this instance of MeshLink, or NULL in case of an error.
241  *                  The pointer is valid until meshlink_close() is called.
242  */
243 struct meshlink_handle *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) __attribute__((__warn_unused_result__));
244
245 /// Open or create a MeshLink instance that uses encrypted storage.
246 /** This function opens or creates a MeshLink instance.
247  *  The state is stored in the configuration directory passed in the variable @a confbase.
248  *  If the configuration directory does not exist yet, for example when it is the first time
249  *  this instance is opened, the configuration directory will be automatically created and initialized.
250  *  However, the parent directory should already exist, otherwise an error will be returned.
251  *
252  *  The name given should be a unique identifier for this instance.
253  *
254  *  This function returns a pointer to a struct meshlink_handle that will be allocated by MeshLink.
255  *  When the application does no longer need to use this handle, it must call meshlink_close() to
256  *  free its resources.
257  *
258  *  This function does not start any network I/O yet. The application should
259  *  first set callbacks, and then call meshlink_start().
260  *
261  *  @param confbase The directory in which MeshLink will store its configuration files.
262  *                  After the function returns, the application is free to overwrite or free @a confbase.
263  *  @param name     The name which this instance of the application will use in the mesh.
264  *                  After the function returns, the application is free to overwrite or free @a name.
265  *                  If NULL is passed as the name, the name used last time the MeshLink instance was initialized is used.
266  *  @param appname  The application name which will be used in the mesh.
267  *                  After the function returns, the application is free to overwrite or free @a name.
268  *  @param devclass The device class which will be used in the mesh.
269  *  @param key      A pointer to a key used to encrypt storage.
270  *  @param keylen   The length of the key in bytes.
271  *
272  *  @return         A pointer to a struct meshlink_handle which represents this instance of MeshLink, or NULL in case of an error.
273  *                  The pointer is valid until meshlink_close() is called.
274  */
275 struct meshlink_handle *meshlink_open_encrypted(const char *confbase, const char *name, const char *appname, dev_class_t devclass, const void *key, size_t keylen) __attribute__((__warn_unused_result__));
276
277 /// Create an ephemeral MeshLink instance that does not store any state.
278 /** This function creates a MeshLink instance.
279  *  No state is ever saved, so once this instance is closed, all its state is gone.
280  *
281  *  The name given should be a unique identifier for this instance.
282  *
283  *  This function returns a pointer to a struct meshlink_handle that will be allocated by MeshLink.
284  *  When the application does no longer need to use this handle, it must call meshlink_close() to
285  *  free its resources.
286  *
287  *  This function does not start any network I/O yet. The application should
288  *  first set callbacks, and then call meshlink_start().
289  *
290  *  @param name     The name which this instance of the application will use in the mesh.
291  *                  After the function returns, the application is free to overwrite or free @a name.
292  *  @param appname  The application name which will be used in the mesh.
293  *                  After the function returns, the application is free to overwrite or free @a name.
294  *  @param devclass The device class which will be used in the mesh.
295  *
296  *  @return         A pointer to a struct meshlink_handle which represents this instance of MeshLink, or NULL in case of an error.
297  *                  The pointer is valid until meshlink_close() is called.
298  */
299 struct meshlink_handle *meshlink_open_ephemeral(const char *name, const char *appname, dev_class_t devclass) __attribute__((__warn_unused_result__));
300
301 /// Start MeshLink.
302 /** This function causes MeshLink to open network sockets, make outgoing connections, and
303  *  create a new thread, which will handle all network I/O.
304  *
305  *  It is allowed to call this function even if MeshLink is already started, in which case it will return true.
306  *
307  *  \memberof meshlink_handle
308  *  @param mesh     A handle which represents an instance of MeshLink.
309  *
310  *  @return         This function will return true if MeshLink has successfully started, false otherwise.
311  */
312 bool meshlink_start(struct meshlink_handle *mesh) __attribute__((__warn_unused_result__));
313
314 /// Stop MeshLink.
315 /** This function causes MeshLink to disconnect from all other nodes,
316  *  close all sockets, and shut down its own thread.
317  *
318  *  This function always succeeds. It is allowed to call meshlink_stop() even if MeshLink is already stopped or has never been started.
319  *
320  *  \memberof meshlink_handle
321  *  @param mesh     A handle which represents an instance of MeshLink.
322  */
323 void meshlink_stop(struct meshlink_handle *mesh);
324
325 /// Close the MeshLink handle.
326 /** This function calls meshlink_stop() if necessary,
327  *  and frees the struct meshlink_handle and all associacted memory allocated by MeshLink.
328  *  Afterwards, the handle and any pointers to a struct meshlink_node are invalid.
329  *
330  *  It is allowed to call this function at any time on a valid handle, except inside callback functions.
331  *  If called at a proper time with a valid handle, this function always succeeds.
332  *  If called within a callback or with an invalid handle, the result is undefined.
333  *
334  * \memberof meshlink_handle
335  *  @param mesh     A handle which represents an instance of MeshLink.
336  */
337 void meshlink_close(struct meshlink_handle *mesh);
338
339 /// Destroy a MeshLink instance.
340 /** This function remove all configuration files of a MeshLink instance. It should only be called when the application
341  *  does not have an open handle to this instance. Afterwards, a call to meshlink_open() will create a completely
342  *  new instance.
343  *
344  *  @param confbase The directory in which MeshLink stores its configuration files.
345  *                  After the function returns, the application is free to overwrite or free @a confbase.
346  *
347  *  @return         This function will return true if the MeshLink instance was successfully destroyed, false otherwise.
348  */
349 bool meshlink_destroy(const char *confbase) __attribute__((__warn_unused_result__));
350
351 /// Destroy a MeshLink instance using open parameters.
352 /** This function remove all configuration files of a MeshLink instance. It should only be called when the application
353  *  does not have an open handle to this instance. Afterwards, a call to meshlink_open() will create a completely
354  *  new instance.
355  *
356  *  This version expects a pointer to meshlink_open_params_t,
357  *  and will use exactly the same settings used for opening a handle to destroy it.
358  *
359  *  @param params   A pointer to a meshlink_open_params_t which must be filled in by the application.
360  *                  After the function returns, the application is free to reuse or free @a params.
361  *
362  *  @return         This function will return true if the MeshLink instance was successfully destroyed, false otherwise.
363  */
364 bool meshlink_destroy_ex(const meshlink_open_params_t *params) __attribute__((__warn_unused_result__));
365
366 /// A callback for receiving data from the mesh.
367 /** @param mesh      A handle which represents an instance of MeshLink.
368  *  @param source    A pointer to a struct meshlink_node describing the source of the data.
369  *  @param data      A pointer to a buffer containing the data sent by the source, or NULL in case there is no data (an empty packet was received).
370  *                   The pointer is only valid during the lifetime of the callback.
371  *                   The callback should mempcy() the data if it needs to be available outside the callback.
372  *  @param len       The length of the received data, or 0 in case there is no data.
373  */
374 typedef void (*meshlink_receive_cb_t)(struct meshlink_handle *mesh, struct meshlink_node *source, const void *data, size_t len);
375
376 /// Set the receive callback.
377 /** This functions sets the callback that is called whenever another node sends data to the local node.
378  *  The callback is run in MeshLink's own thread.
379  *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
380  *  to hand the data over to the application's thread.
381  *  The callback should also not block itself and return as quickly as possible.
382  *
383  *  \memberof meshlink_handle
384  *  @param mesh      A handle which represents an instance of MeshLink.
385  *  @param cb        A pointer to the function which will be called when another node sends data to the local node.
386  *                   If a NULL pointer is given, the callback will be disabled.
387  */
388 void meshlink_set_receive_cb(struct meshlink_handle *mesh, meshlink_receive_cb_t cb);
389
390 /// A callback reporting the meta-connection attempt made by the host node to an another node.
391 /** @param mesh      A handle which represents an instance of MeshLink.
392  *  @param node      A pointer to a struct meshlink_node describing the node to whom meta-connection is being tried.
393  *                   This pointer is valid until meshlink_close() is called.
394  */
395 typedef void (*meshlink_connection_try_cb_t)(struct meshlink_handle *mesh, struct meshlink_node *node);
396
397 /// Set the meta-connection try callback.
398 /** This functions sets the callback that is called whenever a connection attempt is happened to another node.
399  *  The callback is run in MeshLink's own thread.
400  *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
401  *  to hand the data over to the application's thread.
402  *  The callback should also not block itself and return as quickly as possible.
403  *
404  *  \memberof meshlink_handle
405  *  @param mesh      A handle which represents an instance of MeshLink.
406  *  @param cb        A pointer to the function which will be called when host node attempts to make
407  *                   the connection to another node. If a NULL pointer is given, the callback will be disabled.
408  */
409 void meshlink_set_connection_try_cb(struct meshlink_handle *mesh, meshlink_connection_try_cb_t cb);
410
411 /// A callback reporting node status changes.
412 /** @param mesh      A handle which represents an instance of MeshLink.
413  *  @param node       A pointer to a struct meshlink_node describing the node whose status changed.
414  *                    This pointer is valid until meshlink_close() is called.
415  *  @param reachable  True if the node is reachable, false otherwise.
416  */
417 typedef void (*meshlink_node_status_cb_t)(struct meshlink_handle *mesh, struct meshlink_node *node, bool reachable);
418
419 /// Set the node status callback.
420 /** This functions sets the callback that is called whenever another node's status changed.
421  *  The callback is run in MeshLink's own thread.
422  *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
423  *  to hand the data over to the application's thread.
424  *  The callback should also not block itself and return as quickly as possible.
425  *
426  *  \memberof meshlink_handle
427  *  @param mesh      A handle which represents an instance of MeshLink.
428  *  @param cb        A pointer to the function which will be called when another node's status changes.
429  *                   If a NULL pointer is given, the callback will be disabled.
430  */
431 void meshlink_set_node_status_cb(struct meshlink_handle *mesh, meshlink_node_status_cb_t cb);
432
433 /// A callback reporting duplicate node detection.
434 /** @param mesh       A handle which represents an instance of MeshLink.
435  *  @param node       A pointer to a struct meshlink_node describing the node which is duplicate.
436  *                    This pointer is valid until meshlink_close() is called.
437  */
438 typedef void (*meshlink_node_duplicate_cb_t)(struct meshlink_handle *mesh, struct meshlink_node *node);
439
440 /// Set the node duplicate callback.
441 /** This functions sets the callback that is called whenever a duplicate node is detected.
442  *  The callback is run in MeshLink's own thread.
443  *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
444  *  to hand the data over to the application's thread.
445  *  The callback should also not block itself and return as quickly as possible.
446  *
447  *  \memberof meshlink_handle
448  *  @param mesh      A handle which represents an instance of MeshLink.
449  *  @param cb        A pointer to the function which will be called when a duplicate node is detected.
450  *                   If a NULL pointer is given, the callback will be disabled.
451  */
452 void meshlink_set_node_duplicate_cb(struct meshlink_handle *mesh, meshlink_node_duplicate_cb_t cb);
453
454 /// Severity of log messages generated by MeshLink.
455 typedef enum {
456         MESHLINK_DEBUG,    ///< Internal debugging messages. Only useful during application development.
457         MESHLINK_INFO,     ///< Informational messages.
458         MESHLINK_WARNING,  ///< Warnings which might indicate problems, but which are not real errors.
459         MESHLINK_ERROR,    ///< Errors which hamper correct functioning of MeshLink, without causing it to fail completely.
460         MESHLINK_CRITICAL  ///< Critical errors which cause MeshLink to fail completely.
461 } meshlink_log_level_t;
462
463 /// A callback for receiving log messages generated by MeshLink.
464 /** @param mesh      A handle which represents an instance of MeshLink, or NULL.
465  *  @param level     An enum describing the severity level of the message.
466  *  @param text      A pointer to a nul-terminated C string containing the textual log message.
467  *                   This pointer is only valid for the duration of the callback.
468  *                   The application must not free() this pointer.
469  *                   The application should strdup() the text if it has to be available outside the callback.
470  */
471 typedef void (*meshlink_log_cb_t)(struct meshlink_handle *mesh, meshlink_log_level_t level, const char *text);
472
473 /// Set the log callback.
474 /** This functions sets the callback that is called whenever MeshLink has some information to log.
475  *
476  *  The @a mesh parameter can either be a valid MeshLink handle, or NULL.
477  *  In case it is NULL, the callback will be called for errors that happen outside the context of a valid mesh instance.
478  *  Otherwise, it will be called for errors that happen in the context of the given mesh instance.
479  *
480  *  If @a mesh is not NULL, then the callback is run in MeshLink's own thread.
481  *  It is important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
482  *  to hand the data over to the application's thread.
483  *  The callback should also not block itself and return as quickly as possible.
484  *
485  *  The @a mesh parameter can either be a valid MeshLink handle, or NULL.
486  *  In case it is NULL, the callback will be called for errors that happen outside the context of a valid mesh instance.
487  *  Otherwise, it will be called for errors that happen in the context of the given mesh instance.
488  *
489  *  \memberof meshlink_handle
490  *  @param mesh      A handle which represents an instance of MeshLink, or NULL.
491  *  @param level     An enum describing the minimum severity level. Debugging information with a lower level will not trigger the callback.
492  *  @param cb        A pointer to the function which will be called when another node sends data to the local node.
493  *                   If a NULL pointer is given, the callback will be disabled.
494  */
495 void meshlink_set_log_cb(struct meshlink_handle *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb);
496
497 /// A callback for receiving error conditions encountered by the MeshLink thread.
498 /** @param mesh      A handle which represents an instance of MeshLink, or NULL.
499  *  @param errno     The error code describing what kind of error occurred.
500  */
501 typedef void (*meshlink_error_cb_t)(struct meshlink_handle *mesh, meshlink_errno_t meshlink_errno);
502
503 /// Set the error callback.
504 /** This functions sets the callback that is called whenever the MeshLink thread encounters a serious error.
505  *
506  *  While most API functions report an error directly to the caller in case something went wrong,
507  *  MeshLink also runs a background thread which can encounter error conditions.
508  *  Most of them will be dealt with automatically, however there can be errors that will prevent MeshLink from
509  *  working correctly. When the callback is called, it means that MeshLink is no longer functioning
510  *  as expected. The application should then present an error message and shut down, or perform any other
511  *  action it deems appropriate.
512  *
513  *  The callback is run in MeshLink's own thread.
514  *  It is important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
515  *  to hand the data over to the application's thread.
516  *  The callback should also not block itself and return as quickly as possible.
517  *
518  *  Even though the callback signals a serious error inside MeshLink, all open handles are still valid,
519  *  and the application should close handles in exactly the same it would have to do if the callback
520  *  was not called. This must not be done inside the callback itself.
521  *
522  *  \memberof meshlink_handle
523  *  @param mesh      A handle which represents an instance of MeshLink, or NULL.
524  *  @param cb        A pointer to the function which will be called when a serious error is encountered.
525  *                   If a NULL pointer is given, the callback will be disabled.
526  */
527 void meshlink_set_error_cb(struct meshlink_handle *mesh, meshlink_error_cb_t cb);
528
529 /// Send data to another node.
530 /** This functions sends one packet of data to another node in the mesh.
531  *  The packet is sent using UDP semantics, which means that
532  *  the packet is sent as one unit and is received as one unit,
533  *  and that there is no guarantee that the packet will arrive at the destination.
534  *  Packets that are too big to be sent over the network as one unit might be dropped, and this function may return an error if this situation can be detected beforehand.
535  *  The application should take care of getting an acknowledgement and retransmission if necessary.
536  *
537  *  \memberof meshlink_node
538  *  @param mesh         A handle which represents an instance of MeshLink.
539  *  @param destination  A pointer to a struct meshlink_node describing the destination for the data.
540  *  @param data         A pointer to a buffer containing the data to be sent to the source.
541  *                      After meshlink_send() returns, the application is free to overwrite or free this buffer.
542  *                      It is valid to specify a NULL pointer, but only if @a len is also 0.
543  *  @param len          The length of the data.
544  *  @return             This function will return true if MeshLink has queued the message for transmission, and false otherwise.
545  *                      A return value of true does not guarantee that the message will actually arrive at the destination.
546  */
547 bool meshlink_send(struct meshlink_handle *mesh, struct meshlink_node *destination, const void *data, size_t len) __attribute__((__warn_unused_result__));
548
549 /// Get a handle for our own node.
550 /** This function returns a handle for the local node.
551  *
552  *  \memberof meshlink_handle
553  *  @param mesh         A handle which represents an instance of MeshLink.
554  *
555  *  @return             A pointer to a struct meshlink_node which represents the local node.
556  *                      The pointer is guaranteed to be valid until meshlink_close() is called.
557  */
558 struct meshlink_node *meshlink_get_self(struct meshlink_handle *mesh) __attribute__((__warn_unused_result__));
559
560 /// Get a handle for a specific node.
561 /** This function returns a handle for the node with the given name.
562  *
563  *  \memberof meshlink_handle
564  *  @param mesh         A handle which represents an instance of MeshLink.
565  *  @param name         The name of the node for which a handle is requested.
566  *                      After this function returns, the application is free to overwrite or free @a name.
567  *
568  *  @return             A pointer to a struct meshlink_node which represents the requested node,
569  *                      or NULL if the requested node does not exist.
570  *                      The pointer is guaranteed to be valid until meshlink_close() is called.
571  */
572 struct meshlink_node *meshlink_get_node(struct meshlink_handle *mesh, const char *name) __attribute__((__warn_unused_result__));
573
574 /// Get the fingerprint of a node's public key.
575 /** This function returns a fingerprint of the node's public key.
576  *  It should be treated as an opaque blob.
577  *
578  *  \memberof meshlink_node
579  *  @param mesh         A handle which represents an instance of MeshLink.
580  *  @param node         A pointer to a struct meshlink_node describing the node.
581  *
582  *  @return             A nul-terminated C string containing the fingerprint of the node's public key in a printable ASCII format.
583  *                      The application should call free() after it is done using this string.
584  */
585 char *meshlink_get_fingerprint(struct meshlink_handle *mesh, struct meshlink_node *node) __attribute__((__warn_unused_result__));
586
587 /// Get a list of all nodes.
588 /** This function returns a list with handles for all known nodes.
589  *
590  *  \memberof meshlink_handle
591  *  @param mesh         A handle which represents an instance of MeshLink.
592  *  @param nodes        A pointer to a previously allocated array of pointers to struct meshlink_node, or NULL in which case MeshLink will allocate a new array.
593  *                      The application can supply an array it allocated itself with malloc, or the return value from the previous call to this function (which is the preferred way).
594  *                      The application is allowed to call free() on the array whenever it wishes.
595  *                      The pointers in the array are valid until meshlink_close() is called.
596  *  @param nmemb        A pointer to a variable holding the number of nodes that are stored in the array.
597  *                      In case the @a nodes argument is not NULL, MeshLink might call realloc() on the array to change its size.
598  *                      The contents of this variable will be changed to reflect the new size of the array.
599  *
600  *  @return             A pointer to an array containing pointers to all known nodes, or NULL in case of an error.
601  *                      If the @a nodes argument was not NULL, then the return value can either be the same value or a different value.
602  *                      If it is a new value, the old value of @a nodes should not be used anymore.
603  *                      If the new value is NULL, then the old array will have been freed by MeshLink.
604  */
605 struct meshlink_node **meshlink_get_all_nodes(struct meshlink_handle *mesh, struct meshlink_node **nodes, size_t *nmemb) __attribute__((__warn_unused_result__));
606
607 /// Sign data using the local node's MeshLink key.
608 /** This function signs data using the local node's MeshLink key.
609  *  The generated signature can be securely verified by other nodes.
610  *
611  *  \memberof meshlink_handle
612  *  @param mesh         A handle which represents an instance of MeshLink.
613  *  @param data         A pointer to a buffer containing the data to be signed.
614  *  @param len          The length of the data to be signed.
615  *  @param signature    A pointer to a buffer where the signature will be stored.
616  *                      The buffer must be allocated by the application, and should be at least MESHLINK_SIGLEN bytes big.
617  *                      The signature is a binary blob, and is not nul-terminated.
618  *  @param siglen       The size of the signature buffer. Will be changed after the call to match the size of the signature itself.
619  *
620  *  @return             This function returns true if the signature was correctly generated, false otherwise.
621  */
622 bool meshlink_sign(struct meshlink_handle *mesh, const void *data, size_t len, void *signature, size_t *siglen) __attribute__((__warn_unused_result__));
623
624 /// Get the list of all nodes by device class.
625 /** This function returns a list with handles for all the nodes that matches with the given @a devclass.
626  *
627  *  \memberof meshlink_handle
628  *  @param mesh         A handle which represents an instance of MeshLink.
629  *  @param devclass     Device class of the nodes for which the list has to be obtained.
630  *  @param nodes        A pointer to a previously allocated array of pointers to struct meshlink_node, or NULL in which case MeshLink will allocate a new array.
631  *                      The application can supply an array it allocated itself with malloc, or the return value from the previous call to this function (which is the preferred way).
632  *                      The application is allowed to call free() on the array whenever it wishes.
633  *                      The pointers in the array are valid until meshlink_close() is called.
634  *  @param nmemb        A pointer to a variable holding the number of nodes with the same @a device class that are stored in the array.
635  *                      In case the @a nodes argument is not NULL, MeshLink might call realloc() on the array to change its size.
636  *                      The contents of this variable will be changed to reflect the new size of the array.
637  *
638  *  @return             A pointer to an array containing pointers to all known nodes of the given device class, or NULL in case of an error.
639  *                      If the @a nodes argument was not NULL, then the return value can either be the same value or a different value.
640  *                      If it is a new value, the old value of @a nodes should not be used anymore.
641  *                      If the new value is NULL, then the old array will have been freed by MeshLink.
642  */
643 struct meshlink_node **meshlink_get_all_nodes_by_dev_class(struct meshlink_handle *mesh, dev_class_t devclass, struct meshlink_node **nodes, size_t *nmemb) __attribute__((__warn_unused_result__));
644
645 /// Get the list of all nodes by time they were last reachable.
646 /** This function returns a list with handles for all the nodes whose last known reachability time overlaps with the given time range.
647  *  If the range includes 0, it will count nodes that were never online.
648  *  If start is bigger than end, the result will be inverted.
649  *
650  *  \memberof meshlink_handle
651  *  @param mesh         A handle which represents an instance of MeshLink.
652  *  @param start        Start time.
653  *  @param end          End time.
654  *  @param nodes        A pointer to a previously allocated array of pointers to struct meshlink_node, or NULL in which case MeshLink will allocate a new array.
655  *                      The application can supply an array it allocated itself with malloc, or the return value from the previous call to this function (which is the preferred way).
656  *                      The application is allowed to call free() on the array whenever it wishes.
657  *                      The pointers in the array are valid until meshlink_close() is called.
658  *  @param nmemb        A pointer to a variable holding the number of nodes that were reachable within the period given by @a start and @a end.
659  *                      In case the @a nodes argument is not NULL, MeshLink might call realloc() on the array to change its size.
660  *                      The contents of this variable will be changed to reflect the new size of the array.
661  *
662  *  @return             A pointer to an array containing pointers to all known nodes that were reachable within the period given by @a start and @a end.
663  *                      If the @a nodes argument was not NULL, then the return value can either be the same value or a different value.
664  *                      If it is a new value, the old value of @a nodes should not be used anymore.
665  *                      If the new value is NULL, then the old array will have been freed by MeshLink.
666  */
667 struct meshlink_node **meshlink_get_all_nodes_by_last_reachable(struct meshlink_handle *mesh, time_t start, time_t end, struct meshlink_node **nodes, size_t *nmemb) __attribute__((__warn_unused_result__));
668
669 /// Get the node's device class.
670 /** This function returns the device class of the given node.
671  *
672  *  \memberof meshlink_node
673  *  @param mesh          A handle which represents an instance of MeshLink.
674  *  @param node          A pointer to a struct meshlink_node describing the node.
675  *
676  *  @return              This function returns the device class of the @a node, or -1 in case of an error.
677  */
678 dev_class_t meshlink_get_node_dev_class(struct meshlink_handle *mesh, struct meshlink_node *node) __attribute__((__warn_unused_result__));
679
680 /// Get a node's reachability status.
681 /** This function returns the current reachability of a given node, and the times of the last state changes.
682  *  If a given state change never happened, the time returned will be 0.
683  *
684  *  \memberof meshlink_node
685  *  @param mesh              A handle which represents an instance of MeshLink.
686  *  @param node              A pointer to a struct meshlink_node describing the node.
687  *  @param last_reachable    A pointer to a time_t variable that will be filled in with the last time the node became reachable.
688  *                           Pass NULL to not have anything written.
689  *  @param last_unreachable  A pointer to a time_t variable that will be filled in with the last time the node became unreachable.
690  *                           Pass NULL to not have anything written.
691  *
692  *  @return                  This function returns true if the node is currently reachable, false otherwise.
693  */
694 bool meshlink_get_node_reachability(struct meshlink_handle *mesh, struct meshlink_node *node, time_t *last_reachable, time_t *last_unreachable);
695
696 /// Verify the signature generated by another node of a piece of data.
697 /** This function verifies the signature that another node generated for a piece of data.
698  *
699  *  \memberof meshlink_node
700  *  @param mesh         A handle which represents an instance of MeshLink.
701  *  @param source       A pointer to a struct meshlink_node describing the source of the signature.
702  *  @param data         A pointer to a buffer containing the data to be verified.
703  *  @param len          The length of the data to be verified.
704  *  @param signature    A pointer to a buffer where the signature is stored.
705  *  @param siglen       A pointer to a variable holding the size of the signature buffer.
706  *                      The contents of the variable will be changed by meshlink_sign() to reflect the actual size of the signature.
707  *
708  *  @return             This function returns true if the signature is valid, false otherwise.
709  */
710 bool meshlink_verify(struct meshlink_handle *mesh, struct meshlink_node *source, const void *data, size_t len, const void *signature, size_t siglen) __attribute__((__warn_unused_result__));
711
712 /// Set the canonical Address for a node.
713 /** This function sets the canonical Address for a node.
714  *  This address is stored permanently until it is changed by another call to this function,
715  *  unlike other addresses associated with a node,
716  *  such as those added with meshlink_hint_address() or addresses discovered at runtime.
717  *
718  *  If a canonical Address is set for the local node,
719  *  it will be used for the hostname part of generated invitation URLs.
720  *  If a canonical Address is set for a remote node,
721  *  it is used exclusively for creating outgoing connections to that node.
722  *
723  *  \memberof meshlink_node
724  *  @param mesh         A handle which represents an instance of MeshLink.
725  *  @param node         A pointer to a struct meshlink_node describing the node.
726  *  @param address      A nul-terminated C string containing the address, which can be either in numeric format or a hostname.
727  *  @param port         A nul-terminated C string containing the port, which can be either in numeric or symbolic format.
728  *                      If it is NULL, the listening port's number will be used.
729  *
730  *  @return             This function returns true if the address was added, false otherwise.
731  */
732 bool meshlink_set_canonical_address(struct meshlink_handle *mesh, struct meshlink_node *node, const char *address, const char *port) __attribute__((__warn_unused_result__));
733
734 /// Clear the canonical Address for a node.
735 /** This function clears the canonical Address for a node.
736  *
737  *  \memberof meshlink_node
738  *  @param mesh         A handle which represents an instance of MeshLink.
739  *  @param node         A pointer to a struct meshlink_node describing the node.
740  *
741  *  @return             This function returns true if the address was removed, false otherwise.
742  */
743 bool meshlink_clear_canonical_address(struct meshlink_handle *mesh, struct meshlink_node *node) __attribute__((__warn_unused_result__));
744
745 /** This function allows the local node to join an existing mesh using an invitation URL generated by another node.
746  *  An invitation can only be used if the local node has never connected to other nodes before.
747  *  After a successfully accepted invitation, the name of the local node may have changed.
748  *
749  *  This function may only be called on a mesh that has not been started yet and which is not already part of an existing mesh.
750  *  It is not valid to call this function when the storage policy set to MESHLINK_STORAGE_DISABLED.
751  *
752  *  This function is blocking. It can take several seconds before it returns.
753  *  There is no guarantee it will perform a successful join.
754  *  Failures might be caused by temporary network outages, or by the invitation having expired.
755  *
756  *  \memberof meshlink_handle
757  *  @param mesh         A handle which represents an instance of MeshLink.
758  *  @param invitation   A nul-terminated C string containing the invitation URL.
759  *                      After this function returns, the application is free to overwrite or free @a invitation.
760  *
761  *  @return             This function returns true if the local node joined the mesh it was invited to, false otherwise.
762  */
763 bool meshlink_join(struct meshlink_handle *mesh, const char *invitation) __attribute__((__warn_unused_result__));
764
765 /// Export the local node's key and addresses.
766 /** This function generates a string that contains the local node's public key and one or more IP addresses.
767  *  The application can pass it in some way to another node, which can then import it,
768  *  granting the local node access to the other node's mesh.
769  *  The exported data does not contain any secret keys, it is therefore safe to transmit this data unencrypted over public networks.
770  *
771  *  Note that to create a working connection between two nodes, both must call meshink_export() and both must meshlink_import() each other's data.
772  *
773  *  \memberof meshlink_handle
774  *  @param mesh         A handle which represents an instance of MeshLink.
775  *
776  *  @return             This function returns a nul-terminated C string that contains the exported key and addresses, or NULL in case of an error.
777  *                      The application should call free() after it has finished using this string.
778  */
779 char *meshlink_export(struct meshlink_handle *mesh) __attribute__((__warn_unused_result__));
780
781 /// Import another node's key and addresses.
782 /** This function accepts a string containing the exported public key and addresses of another node.
783  *  By importing this data, the local node grants the other node access to its mesh.
784  *  The application should make sure that the data it imports is really coming from the node it wants to import,
785  *
786  *  Note that to create a working connection between two nodes, both must call meshink_export() and both must meshlink_import() each other's data.
787  *
788  *  \memberof meshlink_handle
789  *  @param mesh         A handle which represents an instance of MeshLink.
790  *  @param data         A nul-terminated C string containing the other node's exported key and addresses.
791  *                      After this function returns, the application is free to overwrite or free @a data.
792  *
793  *  @return             This function returns true if the data was valid and the other node has been granted access to the mesh, false otherwise.
794  */
795 bool meshlink_import(struct meshlink_handle *mesh, const char *data) __attribute__((__warn_unused_result__));
796
797 /// Forget any information about a node.
798 /** This function allows the local node to forget any information it has about a node,
799  *  and if possible will remove any data it has stored on disk about the node.
800  *
801  *  After this call returns, the node handle is invalid and may no longer be used, regardless
802  *  of the return value of this call.
803  *
804  *  Note that this function does not prevent MeshLink from actually forgetting about a node,
805  *  or re-learning information about a node at a later point in time. It is merely a hint that
806  *  the application does not care about this node anymore and that any resources kept could be
807  *  cleaned up.
808  *
809  *  \memberof meshlink_node
810  *  @param mesh         A handle which represents an instance of MeshLink.
811  *  @param node         A pointer to a struct meshlink_node describing the node to be forgotten.
812  *
813  *  @return             This function returns true if all currently known data about the node has been forgotten, false otherwise.
814  */
815 bool meshlink_forget_node(struct meshlink_handle *mesh, struct meshlink_node *node);
816
817 /// Hint that a hostname may be found at an address
818 /** This function indicates to meshlink that the given hostname is likely found
819  *  at the given IP address and port.
820  *
821  *  \memberof meshlink_node
822  *  @param mesh     A handle which represents an instance of MeshLink.
823  *  @param node     A pointer to a struct meshlink_node describing the node to add the address hint for.
824  *  @param addr     The IP address and port which should be tried for the
825  *                  given hostname. The caller is free to overwrite or free
826  *                  this memory once meshlink returns.
827  */
828 void meshlink_hint_address(struct meshlink_handle *mesh, struct meshlink_node *node, const struct sockaddr *addr);
829
830 /// Inform MeshLink that the local network configuration might have changed
831 /** This is intended to be used when there is no way for MeshLink to get notifications of local network changes.
832  *  It forces MeshLink to scan all network interfaces for changes in up/down status and new/removed addresses,
833  *  and will immediately check if all connections to other nodes are still alive.
834  *
835  *  \memberof meshlink_handle
836  *  @param mesh    A handle which represents an instance of MeshLink.
837  */
838 void meshlink_hint_network_change(struct meshlink_handle *mesh);
839
840 /// Performs key rotation for an encrypted storage
841 /** This rotates the (master) key for an encrypted storage and discards the old key
842  *  if the call succeeded. This is an atomic call.
843  *
844  *  \memberof meshlink_handle
845  *  @param mesh     A handle which represents an instance of MeshLink.
846  *  @param key      A pointer to the new key used to encrypt storage.
847  *  @param keylen   The length of the new key in bytes.
848  *
849  *  @return         This function returns true if the key rotation for the encrypted storage succeeds, false otherwise.
850  */
851 bool meshlink_encrypted_key_rotate(struct meshlink_handle *mesh, const void *key, size_t keylen) __attribute__((__warn_unused_result__));
852
853 /// Set device class timeouts
854 /** This sets the ping interval and timeout for a given device class.
855  *
856  *  \memberof meshlink_handle
857  *  @param mesh          A handle which represents an instance of MeshLink.
858  *  @param devclass      The device class to update
859  *  @param pinginterval  The interval between keepalive packets, in seconds. The default is 60.
860  *  @param pingtimeout   The required time within which a peer should respond, in seconds. The default is 5.
861  *                       The timeout must be smaller than the interval.
862  */
863 void meshlink_set_dev_class_timeouts(struct meshlink_handle *mesh, dev_class_t devclass, int pinginterval, int pingtimeout);
864
865 /// Set device class fast retry period
866 /** This sets the fast retry period for a given device class.
867  *  During this period after the last time the mesh becomes unreachable, connections are tried once a second.
868  *
869  *  \memberof meshlink_handle
870  *  @param mesh               A handle which represents an instance of MeshLink.
871  *  @param devclass           The device class to update
872  *  @param fast_retry_period  The period during which fast connection retries are done. The default is 0.
873  */
874 void meshlink_set_dev_class_fast_retry_period(struct meshlink_handle *mesh, dev_class_t devclass, int fast_retry_period);
875
876 /// Set device class maximum timeout
877 /** This sets the maximum timeout for outgoing connection retries for a given device class.
878  *
879  *  \memberof meshlink_handle
880  *  @param mesh          A handle which represents an instance of MeshLink.
881  *  @param devclass      The device class to update
882  *  @param maxtimeout    The maximum timeout between reconnection attempts, in seconds. The default is 900.
883  */
884 void meshlink_set_dev_class_maxtimeout(struct meshlink_handle *mesh, dev_class_t devclass, int maxtimeout);
885
886 /// Reset all connection timers
887 /** This resets all timers related to connections, causing pending outgoing connections to be retried immediately.
888  * It also sends keepalive packets on all active connections immediately.
889  *
890  *  \memberof meshlink_handle
891  *  @param mesh          A handle which represents an instance of MeshLink.
892  */
893 void meshlink_reset_timers(struct meshlink_handle *mesh);
894
895 /// Set which order invitations are committed
896 /** This determines in which order configuration files are written to disk during an invitation.
897  *  By default, the invitee saves the configuration to disk first, then the inviter.
898  *  By calling this function with @a inviter_commits_first set to true, the order is reversed.
899  *
900  *  \memberof meshlink_handle
901  *  @param mesh               A handle which represents an instance of MeshLink.
902  *  @param inviter_commits_first  If true, then the node that invited a peer will commit data to disk first.
903  */
904 void meshlink_set_inviter_commits_first(struct meshlink_handle *mesh, bool inviter_commits_first);
905
906 /// Set the scheduling granularity of the application
907 /** This should be set to the effective scheduling granularity for the application.
908  *  This depends on the scheduling granularity of the operating system, the application's
909  *  process priority and whether it is running as realtime or not.
910  *  The default value is 10000 (10 milliseconds).
911  *
912  *  \memberof meshlink_handle
913  *  @param mesh         A handle which represents an instance of MeshLink.
914  *  @param granularity  The scheduling granularity of the application in microseconds.
915  */
916 void meshlink_set_scheduling_granularity(struct meshlink_handle *mesh, long granularity);
917
918 /// Sets the storage policy used by MeshLink
919 /** This sets the policy MeshLink uses when it has new information about nodes.
920  *  By default, all udpates will be stored to disk (unless an ephemeral instance has been opened).
921  *  Setting the policy to MESHLINK_STORAGE_KEYS_ONLY, only updates that contain new keys for nodes
922  *  are stored.
923  *  By setting the policy to MESHLINK_STORAGE_DISABLED, no updates will be stored.
924  *
925  *  \memberof meshlink_handle
926  *  @param mesh    A handle which represents an instance of MeshLink.
927  *  @param policy  The storage policy to use.
928  */
929 void meshlink_set_storage_policy(struct meshlink_handle *mesh, meshlink_storage_policy_t policy);
930
931 #ifdef __cplusplus
932 }
933 #endif
934
935 #endif