X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=examples%2Fmanynodes.c;h=f0fc22da8443621dc448a96dc1410a0b2b240bd4;hb=26112ee0052b68c24a38e6bbb6f25d42b080bd9e;hp=3f59ec38448366da194e442807d83e3ca095ad1c;hpb=011dd48c00fd637c8089fa1a6bb79c63472a626b;p=meshlink diff --git a/examples/manynodes.c b/examples/manynodes.c index 3f59ec38..f0fc22da 100644 --- a/examples/manynodes.c +++ b/examples/manynodes.c @@ -4,7 +4,12 @@ #include #include #include + +#if !defined(_WIN32) && !defined(__APPLE__) #include +#elif defined(__APPLE__) +#include +#endif #include "../src/meshlink.h" #include "../src/devtools.h" @@ -118,6 +123,7 @@ void exportmeshgraph_timer(int signum) exportmeshgraph(name); } +#ifndef _WIN32 static bool exportmeshgraph_started = false; static bool exportmeshgraph_end(const char* none) @@ -172,6 +178,17 @@ static bool exportmeshgraph_begin(const char* timeout_str) return true; } +#else +static bool exportmeshgraph_end(const char* none) +{ + return false; +} + +static bool exportmeshgraph_begin(const char* timeout_str) +{ + return false; +} +#endif static void parse_command(char *buf) { char *arg = strchr(buf, ' '); @@ -365,7 +382,11 @@ int main(int argc, char *argv[]) { mesh = calloc(n, sizeof *mesh); meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_message); +#ifndef _WIN32 mkdir(basebase, 0750); +#else + mkdir(basebase); +#endif char filename[PATH_MAX]; char nodename[100];