summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-20 19:37:05 -0400
committerirungentoo <irungentoo@gmail.com>2013-08-20 19:37:05 -0400
commit128223d9d1c70afe0adb4cfe0cfda39204379c3a (patch)
treed8191c6a088bcaf8c908fbb5e81a22825712330f /other/bootstrap_serverdaemon
parentc7aafcfb4cff44a60fa54fa55cd9e3519b30e720 (diff)
astyle --options=tools/astylerc -r ./*.{c,h}
Diffstat (limited to 'other/bootstrap_serverdaemon')
-rw-r--r--other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c b/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c
index 8eb1530b..81ac538b 100644
--- a/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c
+++ b/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c
@@ -77,7 +77,7 @@ and connect to them.
77returns 1 if the connection to the DHT is up 77returns 1 if the connection to the DHT is up
78returns -1 if all attempts failed 78returns -1 if all attempts failed
79*/ 79*/
80int connect_to_servers(DHT * dht, struct server_info_s *info) 80int connect_to_servers(DHT *dht, struct server_info_s *info)
81{ 81{
82 int i; 82 int i;
83 int c; 83 int c;
@@ -115,7 +115,7 @@ int connect_to_servers(DHT * dht, struct server_info_s *info)
115 return 0; 115 return 0;
116} 116}
117 117
118void manage_keys(DHT * dht, char *keys_file) 118void manage_keys(DHT *dht, char *keys_file)
119{ 119{
120 const uint32_t KEYS_SIZE = crypto_box_PUBLICKEYBYTES + crypto_box_SECRETKEYBYTES; 120 const uint32_t KEYS_SIZE = crypto_box_PUBLICKEYBYTES + crypto_box_SECRETKEYBYTES;
121 uint8_t keys[KEYS_SIZE]; 121 uint8_t keys[KEYS_SIZE];
@@ -293,13 +293,14 @@ int main(int argc, char *argv[])
293 printf("Please specify a configuration file.\n"); 293 printf("Please specify a configuration file.\n");
294 exit(EXIT_FAILURE); 294 exit(EXIT_FAILURE);
295 } 295 }
296
296 server_conf = configure_server(argv[1]); 297 server_conf = configure_server(argv[1]);
297 298
298 /* initialize networking 299 /* initialize networking
299 bind to ip 0.0.0.0:PORT */ 300 bind to ip 0.0.0.0:PORT */
300 IP ip; 301 IP ip;
301 ip.i = 0; 302 ip.i = 0;
302 DHT * dht = new_DHT(new_net_crypto(new_networking(ip, server_conf.port))); 303 DHT *dht = new_DHT(new_net_crypto(new_networking(ip, server_conf.port)));
303 /* Read the config file */ 304 /* Read the config file */
304 printf("PID file: %s\n", server_conf.pid_file); 305 printf("PID file: %s\n", server_conf.pid_file);
305 printf("Key file: %s\n", server_conf.keys_file); 306 printf("Key file: %s\n", server_conf.keys_file);