summaryrefslogtreecommitdiff
path: root/other/DHT_bootstrap.c
diff options
context:
space:
mode:
authorCoren[m] <Break@Ocean>2013-09-09 14:16:40 +0200
committerCoren[m] <Break@Ocean>2013-09-09 14:16:40 +0200
commit29d777ef67bc964229722db073a2abdd1eb737b6 (patch)
treeaaa91593de5c47199d1124456266e7da4483e2ad /other/DHT_bootstrap.c
parenta128e3ff8f09250757ed4ed73fcc088cb5fd15ee (diff)
network.h:
- IP: add in_addr_t as part of the union - IP: rename IP to IP4
Diffstat (limited to 'other/DHT_bootstrap.c')
-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 a42545b1..bc0c592a 100644
--- a/other/DHT_bootstrap.c
+++ b/other/DHT_bootstrap.c
@@ -83,7 +83,7 @@ int main(int argc, char *argv[])
83{ 83{
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 IP4 ip;
87 ip.uint32 = 0; 87 ip.uint32 = 0;
88 DHT *dht = new_DHT(new_net_crypto(new_networking(ip, PORT))); 88 DHT *dht = new_DHT(new_net_crypto(new_networking(ip, PORT)));
89 manage_keys(dht); 89 manage_keys(dht);