diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/DHT_test.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/DHT_test.c b/testing/DHT_test.c new file mode 100644 index 00000000..8c5d2cac --- /dev/null +++ b/testing/DHT_test.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* DHT test | ||
2 | * A file with a main that runs our DHT for testing. | ||
3 | * | ||
4 | * Compile with: gcc -Wall -o test ../core/DHT.c DHT_test.c | ||
5 | */ | ||
6 | |||
7 | #include "../core/DHT.h" | ||
8 | |||
9 | #define PORT 45344 | ||
10 | |||
11 | int main() | ||
12 | { | ||
13 | |||
14 | |||
15 | |||
16 | return 0; | ||
17 | } \ No newline at end of file | ||