From 6c22423d3419b3c0d74228e42280f764da399b2f Mon Sep 17 00:00:00 2001 From: Saverio Proto Date: Wed, 2 Apr 2014 14:44:22 +0200 Subject: [PATCH] Test to integrate the tinc_setup function that is linked from the library --- meshlink-sample/meshlinkapp.c | 5 +++++ 1 file changed, 5 insertions(+) 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; } -- 2.39.2