summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-06-24 08:28:19 -0400
committerirungentoo <irungentoo@gmail.com>2013-06-24 08:28:19 -0400
commit7e341fb171e360e7b1218fd2003e6a1d27863120 (patch)
tree13d0eedb9293df5fe1b611f525fa14765b974c9c /testing
parentbaf14f81211dbc63aac13d76ef0fbbacc3391950 (diff)
Now compiles. Functions starting to take form.
Diffstat (limited to 'testing')
-rw-r--r--testing/DHT_test.c17
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
11int main()
12{
13
14
15
16 return 0;
17} \ No newline at end of file