]> git.meshlink.io Git - meshlink/blob - meshlink-sample/meshlinkapp.c
Test to integrate the tinc_setup function that is linked from the library
[meshlink] / meshlink-sample / meshlinkapp.c
1 #include <libmeshlink.h>
2
3 int main(int argc , char **argv){
4
5 char *tinc_conf = "/tmp/";
6 char *name = "test";
7
8 tinc_setup(tinc_conf, name);
9
10 return 0;
11 }
12