/* DHT test * A file with a main that runs our DHT for testing. * * Compile with: gcc -Wall -o test ../core/DHT.c DHT_test.c */ #include "../core/DHT.h" #define PORT 45344 int main() { return 0; }