summaryrefslogtreecommitdiff
path: root/testing/DHT_test.c
blob: 8c5d2cacc0a772c6f56a640ef4bf516b6ec0052c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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;   
}