From: Saverio Proto Date: Wed, 2 Apr 2014 12:44:22 +0000 (+0200) Subject: Test to integrate the tinc_setup function that is linked from the library X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=6c22423d3419b3c0d74228e42280f764da399b2f Test to integrate the tinc_setup function that is linked from the library --- diff --git a/meshlink-sample/meshlinkapp.c b/meshlink-sample/meshlinkapp.c index a7d5a15f..df78331c 100644 --- a/meshlink-sample/meshlinkapp.c +++ b/meshlink-sample/meshlinkapp.c @@ -2,6 +2,11 @@ int main(int argc , char **argv){ +char *tinc_conf = "/tmp/"; +char *name = "test"; + +tinc_setup(tinc_conf, name); + return 0; }