aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_connection_lib.h4
-rw-r--r--src/util/connection.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_connection_lib.h b/src/include/gnunet_connection_lib.h
index 0051e5fb5..960d4d730 100644
--- a/src/include/gnunet_connection_lib.h
+++ b/src/include/gnunet_connection_lib.h
@@ -296,8 +296,8 @@ struct GNUNET_CONNECTION_TransmitHandle;
296 296
297/** 297/**
298 * Ask the connection to call us once the specified number of bytes 298 * Ask the connection to call us once the specified number of bytes
299 * are free in the transmission buffer. May call the notify 299 * are free in the transmission buffer. Will never call the @a notify
300 * method immediately if enough space is available. Note that 300 * callback in this task, but always first go into the scheduler. Note that
301 * this function will abort if "size" is greater than 301 * this function will abort if "size" is greater than
302 * #GNUNET_SERVER_MAX_MESSAGE_SIZE. 302 * #GNUNET_SERVER_MAX_MESSAGE_SIZE.
303 * 303 *
diff --git a/src/util/connection.c b/src/util/connection.c
index fb20617fd..2bb128abc 100644
--- a/src/util/connection.c
+++ b/src/util/connection.c
@@ -1367,8 +1367,8 @@ SCHEDULE_WRITE:
1367 1367
1368/** 1368/**
1369 * Ask the connection to call us once the specified number of bytes 1369 * Ask the connection to call us once the specified number of bytes
1370 * are free in the transmission buffer. May call the notify 1370 * are free in the transmission buffer. Will never call the @a notify
1371 * method immediately if enough space is available. 1371 * callback in this task, but always first go into the scheduler.
1372 * 1372 *
1373 * @param connection connection 1373 * @param connection connection
1374 * @param size number of bytes to send 1374 * @param size number of bytes to send