aboutsummaryrefslogtreecommitdiff
path: root/src/stream
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-09-12 10:44:39 +0000
committerChristian Grothoff <christian@grothoff.org>2012-09-12 10:44:39 +0000
commit408d03be57dd4ddc3d401d9596952e2e4ebcbc41 (patch)
treeb32c7f59627e9fbaca21f6524e8f3dc234a30d13 /src/stream
parent7be14112c9baad0b15f2b810d9360914da1b481e (diff)
downloadgnunet-408d03be57dd4ddc3d401d9596952e2e4ebcbc41.tar.gz
gnunet-408d03be57dd4ddc3d401d9596952e2e4ebcbc41.zip
triple star fun
Diffstat (limited to 'src/stream')
-rw-r--r--src/stream/stream_protocol.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/stream/stream_protocol.h b/src/stream/stream_protocol.h
index 04b1ef1ee..ca14d16ed 100644
--- a/src/stream/stream_protocol.h
+++ b/src/stream/stream_protocol.h
@@ -115,18 +115,18 @@ struct GNUNET_STREAM_AckMessage
115 struct GNUNET_STREAM_MessageHeader header; 115 struct GNUNET_STREAM_MessageHeader header;
116 116
117 /** 117 /**
118 * The Selective Acknowledgement Bitmap. Computed relative to the base_seq
119 * (bit n corresponds to the Data message with sequence number base_seq+n)
120 */
121 GNUNET_STREAM_AckBitmap bitmap GNUNET_PACKED;
122
123 /**
124 * The sequence number of the next Data Message receiver is 118 * The sequence number of the next Data Message receiver is
125 * anticipating. Data messages less than this number are received by receiver 119 * anticipating. Data messages less than this number are received by receiver
126 */ 120 */
127 uint32_t base_sequence_number GNUNET_PACKED; 121 uint32_t base_sequence_number GNUNET_PACKED;
128 122
129 /** 123 /**
124 * The Selective Acknowledgement Bitmap. Computed relative to the base_seq
125 * (bit n corresponds to the Data message with sequence number base_seq+n)
126 */
127 GNUNET_STREAM_AckBitmap bitmap GNUNET_PACKED;
128
129 /**
130 * Available buffer space past the last acknowledged buffer (for flow control), 130 * Available buffer space past the last acknowledged buffer (for flow control),
131 * in bytes. 131 * in bytes.
132 */ 132 */
@@ -161,6 +161,7 @@ struct GNUNET_STREAM_HelloAckMessage
161 161
162/** 162/**
163 * The Transmit close message(used to signal transmission is closed) 163 * The Transmit close message(used to signal transmission is closed)
164 * FIXME: dead struct?
164 */ 165 */
165struct GNUNET_STREAM_TransmitCloseMessage 166struct GNUNET_STREAM_TransmitCloseMessage
166{ 167{