aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-09-11 10:24:54 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-09-11 10:24:54 +0000
commit786b876b5759c3e8bcd494c8e880d15e05285e29 (patch)
tree38dda98a06764c6c690df61c9055403466d3597e /src/include
parent1ae24ace5ac040dac0b1e9261a7db506b1530ca1 (diff)
downloadgnunet-786b876b5759c3e8bcd494c8e880d15e05285e29.tar.gz
gnunet-786b876b5759c3e8bcd494c8e880d15e05285e29.zip
rename MAX_PACKET_SIZE option to MAX_PAYLOAD_SIZE
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_stream_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_stream_lib.h b/src/include/gnunet_stream_lib.h
index 29ecc731d..ac1065937 100644
--- a/src/include/gnunet_stream_lib.h
+++ b/src/include/gnunet_stream_lib.h
@@ -132,11 +132,11 @@ enum GNUNET_STREAM_Option
132 GNUNET_STREAM_OPTION_SIGNAL_LISTEN_SUCCESS, 132 GNUNET_STREAM_OPTION_SIGNAL_LISTEN_SUCCESS,
133 133
134 /** 134 /**
135 * Option to set the maximum packet size in bytes of a stream data 135 * Option to set the maximum payload size in bytes of a stream data
136 * packets. Takes an uint16_t as argument. Note that this should be less 136 * packets. Takes an uint16_t as argument. Note that this should be less
137 * than 64000 bytes and greater than 64 bytes. Default is 64000 bytes. 137 * than 64000 and cannot be zero. Default is 64000 bytes.
138 */ 138 */
139 GNUNET_STREAM_OPTION_MAX_PACKET_SIZE 139 GNUNET_STREAM_OPTION_MAX_PAYLOAD_SIZE
140 }; 140 };
141 141
142 142