tutorial-examples/019.c: linelength
[oweals/gnunet.git] / doc / tutorial-examples / 019.c
1 message_sent_cont (void *cls,
2                    const struct GNUNET_SCHEDULER_TaskContext *tc)
3 {
4   // Request has left local node
5 }
6
7 struct GNUNET_DHT_PutHandle *
8 GNUNET_DHT_put (struct GNUNET_DHT_Handle *handle,
9                 const struct GNUNET_HashCode *key,
10                 uint32_t desired_replication_level,
11                 enum GNUNET_DHT_RouteOption options,
12                 enum GNUNET_BLOCK_Type type,
13                 size_t size,
14                 const void *data,
15                 struct GNUNET_TIME_Absolute exp,
16                 struct GNUNET_TIME_Relative timeout,
17                 GNUNET_DHT_PutContinuation cont, void *cont_cls)
18