From 5d70f9c119d1ca9ff5ab1b6500cbc62b76936775 Mon Sep 17 00:00:00 2001 From: irungentoo Date: Tue, 25 Jun 2013 17:50:30 -0400 Subject: Fixed a line in DHT.c and clarified something in DHT_test.c. --- testing/DHT_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testing') diff --git a/testing/DHT_test.c b/testing/DHT_test.c index 59b0233e..6bf4e4f2 100644 --- a/testing/DHT_test.c +++ b/testing/DHT_test.c @@ -3,8 +3,8 @@ * * Compile with: gcc -Wall -o test ../core/DHT.c DHT_test.c * - * Command line arguments are the ip and port of a node - * EX: ./test 127.0.0.1 33445 + * Command line arguments are the ip and port of a node and the client_id of the friend you want to find the ip_port of + * EX: ./test 127.0.0.1 33445 ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef */ #include "../core/DHT.h" @@ -93,7 +93,7 @@ int main(int argc, char *argv[]) #endif if (argc < 4) { - printf("usage %s ip port client_id\n", argv[0]); + printf("usage %s ip port client_id(of friend to find ip_port of)\n", argv[0]); exit(0); } addfriend(argv[3]); -- cgit v1.2.3