X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=test%2Fephemeral.c;h=845b218299cbf13fff8e74a1bc6c923314c707a7;hp=6921b53904a68a3dd556937cd1a62043ec2ce86f;hb=9a2520c36431a8a5fd90451e97f488c22f4decc5;hpb=ea20fcfcded669ce8fbbda3a1f93f354ed254603 diff --git a/test/ephemeral.c b/test/ephemeral.c index 6921b539..845b2182 100644 --- a/test/ephemeral.c +++ b/test/ephemeral.c @@ -1,26 +1,10 @@ #include +#include #include #include #include "meshlink.h" - -void log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) { - static struct timeval tv0; - struct timeval tv; - - if(tv0.tv_sec == 0) { - gettimeofday(&tv0, NULL); - } - - gettimeofday(&tv, NULL); - fprintf(stderr, "%u.%.03u ", (unsigned int)(tv.tv_sec - tv0.tv_sec), (unsigned int)tv.tv_usec / 1000); - - if(mesh) { - fprintf(stderr, "(%s) ", mesh->name); - } - - fprintf(stderr, "[%d] %s\n", level, text); -} +#include "utils.h" int main() { meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_cb); @@ -78,6 +62,4 @@ int main() { meshlink_close(mesh1); meshlink_close(mesh2); - - return 0; }