/**
- * Response to a PING. Includes data from the original PING
- * plus initial bandwidth quota information.
+ * Response to a PING. Includes data from the original PING.
*/
struct PongMessage
{
}
/* construct PONG */
tx.reserved = GNUNET_BANDWIDTH_VALUE_MAX;
- /* FIXME: here we should ideally ask ATS about unassigned bandwidth and fill in
- a value based on that; using the minimum here results in a rather slow start... */
tx.challenge = t.challenge;
tx.target = t.target;
tp.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_PONG);
#include "gnunet_constants.h"
-/**
- * Receive and send buffer windows grow over time. For
- * how long can 'unused' bandwidth accumulate before we
- * need to cap it? (specified in seconds).
- */
-#define MAX_WINDOW_TIME_S (5 * 60)
-
-
/**
* Message ready for transmission via transport service. This struct
* is followed by the actual content of the message.