Next: Debugging with gnunet-arm, Previous: Storing peer-specific data using the PEERSTORE service, Up: Developing Applications [Contents]
The DHT allows to store data so other peers in the P2P network can access it and retrieve data stored by any peers in the network. This section will explain how to use the DHT. Of course, the first thing to do is to connect to the DHT service:
dht_handle = GNUNET_DHT_connect (cfg, parallel_requests);
The second parameter indicates how many requests in parallel to expect. It is not a hard limit, but a good approximation will make the DHT more efficient.
• Storing data in the DHT: | ||
• Obtaining data from the DHT: | ||
• Implementing a block plugin: | ||
• Monitoring the DHT: |