aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gns.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/gns.h')
-rw-r--r--src/gns/gns.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gns/gns.h b/src/gns/gns.h
index 3b41de83c..8465f49f9 100644
--- a/src/gns/gns.h
+++ b/src/gns/gns.h
@@ -11,7 +11,7 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
@@ -33,8 +33,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
33/** 33/**
34 * Message from client to GNS service to lookup records. 34 * Message from client to GNS service to lookup records.
35 */ 35 */
36struct LookupMessage 36struct LookupMessage {
37{
38 /** 37 /**
39 * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP 38 * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP
40 */ 39 */
@@ -73,10 +72,9 @@ struct LookupMessage
73/** 72/**
74 * Message from GNS service to client: new results. 73 * Message from GNS service to client: new results.
75 */ 74 */
76struct LookupResultMessage 75struct LookupResultMessage {
77{
78 /** 76 /**
79 * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP_RESULT 77 * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP_RESULT
80 */ 78 */
81 struct GNUNET_MessageHeader header; 79 struct GNUNET_MessageHeader header;
82 80
@@ -91,7 +89,6 @@ struct LookupResultMessage
91 uint32_t rd_count GNUNET_PACKED; 89 uint32_t rd_count GNUNET_PACKED;
92 90
93 /* followed by rd_count GNUNET_GNSRECORD_Data structs*/ 91 /* followed by rd_count GNUNET_GNSRECORD_Data structs*/
94
95}; 92};
96 93
97 94