- moved timeout handling responsibility from for nat tests from caller to the library
[oweals/gnunet.git] / src / peerstore / peerstore_common.h
1 /*
2       This file is part of GNUnet
3       (C)
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 /**
22  * @file peerstore/peerstore_common.h
23  * @brief Helper peerstore functions
24  * @author Omar Tarabai
25  */
26
27 #include "peerstore.h"
28
29 /**
30  * Creates a hash of the given key combination
31  *
32  */
33 void
34 PEERSTORE_hash_key(const char *sub_system,
35     const struct GNUNET_PeerIdentity *peer,
36     const char *key,
37     struct GNUNET_HashCode *ret);
38
39 /**
40  * Creates a record message ready to be sent
41  *
42  * @param sub_system sub system string
43  * @param peer Peer identity (can be NULL)
44  * @param key record key string (can be NULL)
45  * @param value record value BLOB (can be NULL)
46  * @param value_size record value size in bytes (set to 0 if value is NULL)
47  * @param expiry absolute time after which the record expires
48  * @param msg_type message type to be set in header
49  * @return pointer to record message struct
50  */
51 struct StoreRecordMessage *
52 PEERSTORE_create_record_message(const char *sub_system,
53     const struct GNUNET_PeerIdentity *peer,
54     const char *key,
55     const void *value,
56     size_t value_size,
57     struct GNUNET_TIME_Absolute *expiry,
58     uint16_t msg_type);
59
60 /**
61  * Creates a MQ envelope for a single record
62  *
63  * @param sub_system sub system string
64  * @param peer Peer identity (can be NULL)
65  * @param key record key string (can be NULL)
66  * @param value record value BLOB (can be NULL)
67  * @param value_size record value size in bytes (set to 0 if value is NULL)
68  * @param expiry time after which the record expires
69  * @param msg_type message type to be set in header
70  * @return pointer to record message struct
71  */
72 struct GNUNET_MQ_Envelope *
73 PEERSTORE_create_record_mq_envelope(const char *sub_system,
74     const struct GNUNET_PeerIdentity *peer,
75     const char *key,
76     const void *value,
77     size_t value_size,
78     struct GNUNET_TIME_Absolute *expiry,
79     enum GNUNET_PEERSTORE_StoreOption options,
80     uint16_t msg_type);
81
82 /**
83  * Parses a message carrying a record
84  *
85  * @param message the actual message
86  * @return Pointer to record or NULL if error
87  */
88 struct GNUNET_PEERSTORE_Record *
89 PEERSTORE_parse_record_message(const struct GNUNET_MessageHeader *message);
90
91 /**
92  * Free any memory allocated for this record
93  *
94  * @param record
95  */
96 void PEERSTORE_destroy_record(struct GNUNET_PEERSTORE_Record *record);