tutorial-examples 17,19,20: linelength.
[oweals/gnunet.git] / doc / tutorial-examples / 020.c
1 static void
2 get_result_iterator (void *cls, struct GNUNET_TIME_Absolute expiration,
3                      const struct GNUNET_HashCode *key,
4                      const struct GNUNET_PeerIdentity *get_path,
5                      unsigned int get_path_length,
6                      const struct GNUNET_PeerIdentity *put_path,
7                      unsigned int put_path_length,
8                      enum GNUNET_BLOCK_Type type, size_t size,
9                      const void *data)
10 {
11   // Optionally:
12   GNUNET_DHT_get_stop (get_handle);
13 }
14
15 get_handle =
16       GNUNET_DHT_get_start (dht_handle,
17                             block_type,
18                             &key,
19                             replication,
20                             GNUNET_DHT_RO_NONE,
21                             NULL,
22                             0,
23                             &get_result_iterator,
24                             cls)
25