You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
262 B

// Comprehensive stress test for socket-like API
#include <stdio.h>
#include "ZeroTierSDK.h"
int main()
{
printf("zts_core_version = %s\n", zts_core_version());
zts_start("./ztsdk"); // starts ZeroTier core, generates id in ./zt
zts_stop();
return 0;
}