]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Start moving the implementation of the public part of the API to meshlink.c.
[meshlink] / src / meshlink.c
1 /*
2     meshlink.c -- Implementation of the MeshLink API.
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21
22 #include "meshlink_internal.h"
23
24 static const char *errstr[] = {
25         [MESHLINK_OK] = "No error",
26         [MESHLINK_ENOMEM] = "Out of memory",
27         [MESHLINK_ENOENT] = "No such node",
28 };
29
30 const char *meshlink_strerror(meshlink_errno_t errno) {
31         return errstr[errno];
32 }
33
34 meshlink_handle_t *meshlink_open(const char *confbase, const char *name) {
35         return NULL;
36 }
37
38 bool meshlink_start(meshlink_handle_t *handle) {
39         return false;
40 }
41
42 void meshlink_stop(meshlink_handle_t *handle) {
43 }
44
45 void meshlink_close(meshlink_handle_t *handle) {
46 }
47
48 void meshlink_set_receive_cb(meshlink_handle_t *handle, meshlink_receive_cb_t cb) {
49 }
50
51 void meshlink_set_node_status_cb(meshlink_handle_t *handle, meshlink_node_status_cb_t cb) {
52 }
53
54 void meshlink_set_log_cb(meshlink_handle_t *handle, meshlink_log_level_t level, meshlink_log_cb_t cb) {
55 }
56
57 bool meshlink_send(meshlink_handle_t *handle, meshlink_node_t *destination, const void *data, unsigned int len) {
58         return false;
59 }
60
61 meshlink_node_t *meshlink_get_node(meshlink_handle_t *handle, const char *name) {
62         return NULL;
63 }
64
65 size_t meshlink_get_all_nodes(meshlink_handle_t *handle, meshlink_node_t **nodes, size_t nmemb) {
66         return 0;
67 }
68
69 char *meshlink_sign(meshlink_handle_t *handle, const char *data, size_t len) {
70         return NULL;
71 }
72
73 bool meshlink_verify(meshlink_handle_t *handle, meshlink_node_t *source, const char *data, size_t len, const char *signature) {
74         return false;
75 }
76
77 char *meshlink_invite(meshlink_handle_t *handle, const char *name) {
78         return NULL;
79 }
80
81 bool meshlink_join(meshlink_handle_t *handle, const char *invitation) {
82         return false;
83 }
84
85 char *meshlink_export(meshlink_handle_t *handle) {
86         return NULL;
87 }
88
89 bool meshlink_import(meshlink_handle_t *handle, const char *data) {
90         return false;
91 }
92
93 void meshlink_blacklist(meshlink_handle_t *handle, meshlink_node_t *node) {
94 }
95