aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-06-06 11:49:30 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-06-06 11:49:30 +0000
commit8e32bc8869091470bd243fb78459cb9981d6a1fa (patch)
treee2ff3944b37f7e5eeaf5e7abd418a8cc742e6112 /src
parent40c65ed83cc3ab82c87e65e3291b95fcd214fd02 (diff)
downloadgnunet-8e32bc8869091470bd243fb78459cb9981d6a1fa.tar.gz
gnunet-8e32bc8869091470bd243fb78459cb9981d6a1fa.zip
-network message struct
Diffstat (limited to 'src')
-rw-r--r--src/stream/stream_protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream/stream_protocol.h b/src/stream/stream_protocol.h
index 0c5376f84..d1c43b778 100644
--- a/src/stream/stream_protocol.h
+++ b/src/stream/stream_protocol.h
@@ -154,14 +154,14 @@ struct GNUNET_STREAM_HelloAckMessage
154 * The selected sequence number. Following data tranmissions from the sender 154 * The selected sequence number. Following data tranmissions from the sender
155 * start with this sequence 155 * start with this sequence
156 */ 156 */
157 uint32_t sequence_number; 157 uint32_t sequence_number GNUNET_PACKED;
158 158
159 /** 159 /**
160 * The size(in bytes) of the receive window on the peer sending this message 160 * The size(in bytes) of the receive window on the peer sending this message
161 * 161 *
162 * FIXME: Remove if not needed 162 * FIXME: Remove if not needed
163 */ 163 */
164 uint32_t receiver_window_size; 164 uint32_t receiver_window_size GNUNET_PACKED;
165}; 165};
166 166
167 167