summaryrefslogtreecommitdiff
path: root/nltest.cpp
blob: 9659a7949b6371e8d151bf813fac35ad2b0fa20c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "osdep/LinuxNetLink.hpp"

using namespace ZeroTier;

int main(int argc, char **argv)
{
    LinuxNetLink &nl = LinuxNetLink::getInstance();


    while(true) {
        Thread::sleep(1000);
    }
}