summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-22 16:06:36 -0400
committerirungentoo <irungentoo@gmail.com>2013-07-22 16:06:36 -0400
commit53b58a4c824984839124cb46334bcf7bbba782ca (patch)
treebae619f91bb7681dc40243032ab1171eac972253 /other
parentcca045b4a20b9c830f0e1d313fc35667c79b1bf0 (diff)
Print the defined port.
Diffstat (limited to 'other')
-rw-r--r--other/DHT_bootstrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/DHT_bootstrap.c b/other/DHT_bootstrap.c
index 85ed679c..ac74d901 100644
--- a/other/DHT_bootstrap.c
+++ b/other/DHT_bootstrap.c
@@ -80,7 +80,7 @@ int main(int argc, char *argv[])
80 printf("%hhX",self_public_key[i]); 80 printf("%hhX",self_public_key[i]);
81 } 81 }
82 printf("\n"); 82 printf("\n");
83 printf("Port: 33445\n"); 83 printf("Port: %u\n", PORT);
84 //initialize networking 84 //initialize networking
85 //bind to ip 0.0.0.0:PORT 85 //bind to ip 0.0.0.0:PORT
86 IP ip; 86 IP ip;