- moved timeout handling responsibility from for nat tests from caller to the library
[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 #ifndef PEERSTORE_H_
27 #define PEERSTORE_H_
28
29 #include "gnunet_peerstore_service.h"
30
31
32 GNUNET_NETWORK_STRUCT_BEGIN
33
34 /**
35  * Message carrying a PEERSTORE record message
36  */
37 struct StoreRecordMessage
38 {
39
40   /**
41    * GNUnet message header
42    */
43   struct GNUNET_MessageHeader header;
44
45   /**
46    * #GNUNET_YES if peer id value set, #GNUNET_NO otherwise
47    */
48   uint16_t peer_set;
49
50   /**
51    * Peer Identity
52    */
53   struct GNUNET_PeerIdentity peer;
54
55   /**
56    * Size of the sub_system string
57    * Allocated at position 0 after this struct
58    */
59   size_t sub_system_size;
60
61   /**
62    * Size of the key string
63    * Allocated at position 1 after this struct
64    */
65   size_t key_size;
66
67   /**
68    * Size of value blob
69    * Allocated at position 2 after this struct
70    */
71   size_t value_size;
72
73   /**
74    * Expiry time of entry
75    */
76   struct GNUNET_TIME_Absolute expiry;
77
78   /**
79    * Options, needed only in case of a
80    * store operation
81    */
82   enum GNUNET_PEERSTORE_StoreOption options;
83
84 };
85
86 /**
87  * Message carrying record key hash
88  */
89 struct StoreKeyHashMessage
90 {
91
92   /**
93    * GNUnet message header
94    */
95   struct GNUNET_MessageHeader header;
96
97   /**
98    * Hash of a record key
99    */
100   struct GNUNET_HashCode keyhash;
101
102 };
103
104 GNUNET_NETWORK_STRUCT_END
105
106 #endif