summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authorAstonex <softukitu@gmail.com>2013-07-29 23:00:56 +0100
committerAstonex <softukitu@gmail.com>2013-07-29 23:00:56 +0100
commit5ad33e7398fb2ec0dd8d960f3e66371eb5b15782 (patch)
tree7fefee2935aed547eab8ba844822cec482073b23 /other
parentd09bcccc67cd6598cd6483bebee16c8ab64d4c7c (diff)
Essentially nTox without the ncurses for Windows. Slightly modified main()
Diffstat (limited to 'other')
-rw-r--r--other/DHT_bootstrap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/other/DHT_bootstrap.c b/other/DHT_bootstrap.c
index 19714e70..befe2225 100644
--- a/other/DHT_bootstrap.c
+++ b/other/DHT_bootstrap.c
@@ -79,12 +79,20 @@ int main(int argc, char *argv[])
79 manage_keys(); 79 manage_keys();
80 printf("Public key: "); 80 printf("Public key: ");
81 uint32_t i; 81 uint32_t i;
82
83 FILE *file;
84 file = fopen("PUBLIC_ID.txt", "w");
85
82 for(i = 0; i < 32; i++) 86 for(i = 0; i < 32; i++)
83 { 87 {
84 if(self_public_key[i] < 16) 88 if(self_public_key[i] < 16)
85 printf("0"); 89 printf("0");
86 printf("%hhX",self_public_key[i]); 90 printf("%hhX",self_public_key[i]);
91 fprintf(file, "%hhX",self_public_key[i]);
87 } 92 }
93
94 fclose(file);
95
88 printf("\n"); 96 printf("\n");
89 printf("Port: %u\n", PORT); 97 printf("Port: %u\n", PORT);
90 //initialize networking 98 //initialize networking