29e2ed8665d60aec83e1c8351f166aca54655eac
[oweals/gnunet.git] / src / peerstore / peerstore.h
1 /*
2       This file is part of GNUnet
3       (C) 2012-2013 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20 /**
21  * @file peerstore/peerstore.h
22  * @brief IPC messages
23  * @author Omar Tarabai
24  */
25
26 #include "gnunet_peerstore_service.h"
27
28
29 GNUNET_NETWORK_STRUCT_BEGIN
30
31 /**
32  * Message carrying a PEERSTORE store request
33  */
34 struct StoreRequestMessage
35 {
36
37   /**
38    * GNUnet message header
39    */
40   struct GNUNET_MessageHeader header;
41
42   /**
43    * Size of the sub_system string
44    * Allocated at position 0 after this struct
45    */
46   size_t sub_system_size;
47
48   /**
49    * Peer Identity
50    */
51   struct GNUNET_PeerIdentity peer;
52
53   /**
54    * Size of the key string
55    * Allocated at position 1 after this struct
56    */
57   size_t key_size;
58
59   /**
60    * Size of value blob
61    * Allocated at position 2 after this struct
62    */
63   size_t value_size;
64
65   /**
66    * Lifetime of entry
67    */
68   struct GNUNET_TIME_Relative lifetime;
69
70 };
71
72 GNUNET_NETWORK_STRUCT_END