- added check against statistics
[oweals/gnunet.git] / src / gns / gns.h
1 /*
2       This file is part of GNUnet
3       (C) 2012 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 2, 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 #include "gnunet_gns_service.h"
22
23 /**
24  * @file gns/gns.h
25  * @brief IPC messages between GNS API and GNS service
26  * @author Martin Schanzenbach
27  */
28 #ifndef GNS_H
29 #define GNS_H
30
31 #define GNUNET_GNS_TLD "gnunet"
32 #define GNUNET_GNS_TLD_ZKEY "zkey"
33 #define GNUNET_GNS_DHT_MAX_UPDATE_INTERVAL 3600
34
35 #define MAX_DNS_LABEL_LENGTH 63
36 #define MAX_DNS_NAME_LENGTH 253
37
38 GNUNET_NETWORK_STRUCT_BEGIN
39
40 /**
41  * Message from client to GNS service to lookup records.
42  */
43 struct GNUNET_GNS_ClientLookupMessage
44 {
45   /**
46     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP
47    */
48   struct GNUNET_MessageHeader header;
49
50   /**
51    * Unique identifier for this request (for key collisions).
52    */
53   uint32_t id GNUNET_PACKED;
54
55   /**
56    * the type of record to look up
57    */
58   // FIXME: bad type - should be of GNUNET_GNS_RecordType
59   enum GNUNET_GNS_RecordType type;
60
61   /* Followed by the name to look up */
62 };
63
64
65 /**
66  * Message from GNS service to client: new results.
67  */
68 struct GNUNET_GNS_ClientLookupResultMessage
69 {
70   /**
71     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_RESULT
72    */
73   struct GNUNET_MessageHeader header;
74
75   /**
76    * Unique identifier for this request (for key collisions).
77    */
78   uint32_t id GNUNET_PACKED;
79
80   /**
81    * The number of records contained in response
82    */  
83   uint32_t rd_count;
84
85   // FIXME: what format has a GNS_Record?
86   /* followed by rd_count GNUNET_NAMESTORE_RecordData structs*/
87
88 };
89
90 /**
91  * Message from client to GNS service to shorten names.
92  */
93 struct GNUNET_GNS_ClientShortenMessage
94 {
95   /**
96     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_SHORTEN
97    */
98   struct GNUNET_MessageHeader header;
99
100   /**
101    * Unique identifier for this request
102    */
103   uint32_t id GNUNET_PACKED;
104
105   /* Followed by the name to shorten up */
106 };
107
108
109 /**
110  * Message from GNS service to client: shorten result.
111  */
112 struct GNUNET_GNS_ClientShortenResultMessage
113 {
114   /**
115     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_SHORTEN_RESULT
116    */
117   struct GNUNET_MessageHeader header;
118
119   /**
120    * Unique identifier for this request (for key collisions).
121    */
122   uint32_t id GNUNET_PACKED;
123
124   /* followed by the shortened name or '\0' for no result*/
125
126 };
127
128 /**
129  * Message from client to GNS service to lookup an authority of a name.
130  */
131 struct GNUNET_GNS_ClientGetAuthMessage
132 {
133   /**
134     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_GET_AUTH
135    */
136   struct GNUNET_MessageHeader header;
137
138   /**
139    * Unique identifier for this request
140    */
141   uint32_t id GNUNET_PACKED;
142
143   /* Followed by the name to get authority for */
144 };
145
146
147 /**
148  * Message from GNS service to client: authority result.
149  */
150 struct GNUNET_GNS_ClientGetAuthResultMessage
151 {
152   /**
153     * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_GET_AUTH_RESULT
154    */
155   struct GNUNET_MessageHeader header;
156
157   /**
158    * Unique identifier for this request (for key collisions).
159    */
160   uint32_t id GNUNET_PACKED;
161
162   /* followed by the authority part of the name or '\0' for no result*/
163
164 };
165 GNUNET_NETWORK_STRUCT_END
166
167 #endif