aboutsummaryrefslogtreecommitdiff
path: root/src/chat/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat/chat.h')
-rw-r--r--src/chat/chat.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/chat/chat.h b/src/chat/chat.h
index 5df7773a7..c65b75de9 100644
--- a/src/chat/chat.h
+++ b/src/chat/chat.h
@@ -80,7 +80,7 @@ struct ReceiveNotificationMessage
80 * Hash of the public key of the pseudonym of the sender of the message. 80 * Hash of the public key of the pseudonym of the sender of the message.
81 * Should be all zeros for anonymous. 81 * Should be all zeros for anonymous.
82 */ 82 */
83 GNUNET_HashCode sender; 83 struct GNUNET_HashCode sender;
84 84
85 /** 85 /**
86 * The encrypted session key. 86 * The encrypted session key.
@@ -136,7 +136,7 @@ struct TransmitRequestMessage
136 /** 136 /**
137 * Who should receive this message? Set to all zeros for "everyone". 137 * Who should receive this message? Set to all zeros for "everyone".
138 */ 138 */
139 GNUNET_HashCode target; 139 struct GNUNET_HashCode target;
140 140
141}; 141};
142 142
@@ -189,17 +189,17 @@ struct ConfirmationReceiptMessage
189 /** 189 /**
190 * Who is confirming the receipt? 190 * Who is confirming the receipt?
191 */ 191 */
192 GNUNET_HashCode target; 192 struct GNUNET_HashCode target;
193 193
194 /** 194 /**
195 * Who is the author of the chat message? 195 * Who is the author of the chat message?
196 */ 196 */
197 GNUNET_HashCode author; 197 struct GNUNET_HashCode author;
198 198
199 /** 199 /**
200 * Hash of the (possibly encrypted) content. 200 * Hash of the (possibly encrypted) content.
201 */ 201 */
202 GNUNET_HashCode content; 202 struct GNUNET_HashCode content;
203 203
204}; 204};
205 205
@@ -406,12 +406,12 @@ struct P2PReceiveNotificationMessage
406 * Hash of the public key of the pseudonym of the sender of the message 406 * Hash of the public key of the pseudonym of the sender of the message
407 * Should be all zeros for anonymous. 407 * Should be all zeros for anonymous.
408 */ 408 */
409 GNUNET_HashCode sender; 409 struct GNUNET_HashCode sender;
410 410
411 /** 411 /**
412 * Who should receive this message? Set to all zeros for "everyone". 412 * Who should receive this message? Set to all zeros for "everyone".
413 */ 413 */
414 GNUNET_HashCode target; 414 struct GNUNET_HashCode target;
415 415
416 /** 416 /**
417 * The encrypted session key. 417 * The encrypted session key.
@@ -465,17 +465,17 @@ struct P2PConfirmationReceiptMessage
465 /** 465 /**
466 * Who is confirming the receipt? 466 * Who is confirming the receipt?
467 */ 467 */
468 GNUNET_HashCode target; 468 struct GNUNET_HashCode target;
469 469
470 /** 470 /**
471 * Who is the author of the chat message? 471 * Who is the author of the chat message?
472 */ 472 */
473 GNUNET_HashCode author; 473 struct GNUNET_HashCode author;
474 474
475 /** 475 /**
476 * Hash of the (possibly encrypted) content. 476 * Hash of the (possibly encrypted) content.
477 */ 477 */
478 GNUNET_HashCode content; 478 struct GNUNET_HashCode content;
479 479
480}; 480};
481GNUNET_NETWORK_STRUCT_END 481GNUNET_NETWORK_STRUCT_END