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