aboutsummaryrefslogtreecommitdiff
path: root/src/nse
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-05 19:54:57 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-05 19:54:57 +0000
commit3816824b405add09b33616b995477ffa01fdd68c (patch)
treeacc3b37828de02cd83a28c43f312c449166d03e4 /src/nse
parent0c12ebfc6616bc3932fa2f3ebf459078a2c14f6c (diff)
downloadgnunet-3816824b405add09b33616b995477ffa01fdd68c.tar.gz
gnunet-3816824b405add09b33616b995477ffa01fdd68c.zip
add packed
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/nse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nse/nse.h b/src/nse/nse.h
index 536834573..91b629657 100644
--- a/src/nse/nse.h
+++ b/src/nse/nse.h
@@ -52,7 +52,7 @@ struct GNUNET_NSE_ClientMessage
52 /** 52 /**
53 * For alignment. 53 * For alignment.
54 */ 54 */
55 uint32_t reserved; 55 uint32_t reserved GNUNET_PACKED;
56 56
57 /** 57 /**
58 * Timestamp at which the server received the message. 58 * Timestamp at which the server received the message.
@@ -62,14 +62,14 @@ struct GNUNET_NSE_ClientMessage
62 /** 62 /**
63 * The current estimated network size. 63 * The current estimated network size.
64 */ 64 */
65 double size_estimate; 65 double size_estimate GNUNET_PACKED;
66 66
67 /** 67 /**
68 * The standard deviation (rounded down 68 * The standard deviation (rounded down
69 * to the nearest integer) of size 69 * to the nearest integer) of size
70 * estimations. 70 * estimations.
71 */ 71 */
72 double std_deviation; 72 double std_deviation GNUNET_PACKED;
73}; 73};
74 74
75 75