-ftbfs
[oweals/gnunet.git] / src / set / set_protocol.h
1 /*
2      This file is part of GNUnet.
3      (C) 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 /**
22  * @author Florian Dold
23  * @file set/set_protocol.h
24  * @brief Peer-to-Peer messages for gnunet set
25  */
26 #ifndef SET_PROTOCOL_H
27 #define SET_PROTOCOL_H
28
29 #include "platform.h"
30 #include "gnunet_common.h"
31
32
33 GNUNET_NETWORK_STRUCT_BEGIN
34
35 struct OperationRequestMessage
36 {
37   /**
38    * Type: GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST
39    */
40   struct GNUNET_MessageHeader header;
41
42   /**
43    * Operation to request, values from 'enum GNUNET_SET_OperationType'
44    */
45   uint32_t operation GNUNET_PACKED;
46
47   /**
48    * Salt to use for this operation.
49    */
50   uint32_t salt;
51
52   /**
53    * Application-specific identifier of the request.
54    */
55   struct GNUNET_HashCode app_id;
56
57   /* rest: optional message */
58 };
59
60 struct IBFMessage
61 {
62   /**
63    * Type: GNUNET_MESSAGE_TYPE_SET_P2P_IBF
64    */
65   struct GNUNET_MessageHeader header;
66
67   /**
68    * Order of the whole ibf, where
69    * num_buckets = 2^order
70    */
71   uint8_t order;
72
73   /**
74    * Padding, must be 0.
75    */
76   uint8_t reserved;
77
78   /**
79    * Offset of the strata in the rest of the message
80    */
81   uint16_t offset GNUNET_PACKED;
82
83   /**
84    * Salt used when hashing elements for this IBF.
85    */
86   uint32_t salt;
87
88   /* rest: strata */
89 };
90
91
92 GNUNET_NETWORK_STRUCT_END
93
94 #endif