gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r28978 - gnunet/src/include


From: gnunet
Subject: [GNUnet-SVN] r28978 - gnunet/src/include
Date: Wed, 4 Sep 2013 10:00:17 +0200

Author: tg
Date: 2013-09-04 10:00:17 +0200 (Wed, 04 Sep 2013)
New Revision: 28978

Modified:
   gnunet/src/include/gnunet_multicast_service.h
Log:
multicast: revert packed struct syntax

Modified: gnunet/src/include/gnunet_multicast_service.h
===================================================================
--- gnunet/src/include/gnunet_multicast_service.h       2013-09-04 07:17:20 UTC 
(rev 28977)
+++ gnunet/src/include/gnunet_multicast_service.h       2013-09-04 08:00:17 UTC 
(rev 28978)
@@ -101,7 +101,7 @@
    * unicast requests from members.  Updated at each hop and thus not signed 
and
    * not secure.
    */
-  uint32_t hop_counter;
+  uint32_t hop_counter GNUNET_PACKED;
 
   /** 
    * ECC signature of the message fragment.
@@ -118,19 +118,19 @@
   /** 
    * Number of the message fragment, monotonically increasing.
    */
-  uint64_t fragment_id;
+  uint64_t fragment_id GNUNET_PACKED;
 
   /** 
    * Byte offset of this @e fragment of the @e message.
    */
-  uint64_t fragment_offset;
+  uint64_t fragment_offset GNUNET_PACKED;
 
   /** 
    * Number of the message this fragment belongs to.
    *
    * Set in GNUNET_MULTICAST_origin_to_all().
    */
-  uint64_t message_id;
+  uint64_t message_id GNUNET_PACKED;
 
   /** 
    * Counter that monotonically increases whenever a member parts the group.
@@ -142,15 +142,15 @@
    * is still the same before and after the missed messages, it means that no
    * @e join or @e part operations happened during the missed messages.
    */
-  uint64_t group_generation;
+  uint64_t group_generation GNUNET_PACKED;
 
   /**
    * Flags for this message fragment.
    */
-  uint32_t flags;
+  uint32_t flags GNUNET_PACKED;
 
   /* Followed by message body. */
-} GNUNET_PACKED;
+};
 
 GNUNET_NETWORK_STRUCT_END
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]