Lower chances of disconnect during file transfers.

This commit is contained in:
irungentoo 2015-11-11 11:00:08 -05:00
parent 0d0b74f5a8
commit 6b7f1deb79
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98
2 changed files with 2 additions and 2 deletions

View File

@ -2130,7 +2130,7 @@ static void send_crypto_packets(Net_Crypto *c)
double send_array_ratio = (((double)npackets) / min_speed);
//TODO: Improve formula?
if (send_array_ratio > 2.0 && CRYPTO_MIN_QUEUE_LENGTH * 3 < npackets) {
if (send_array_ratio > 2.0 && CRYPTO_MIN_QUEUE_LENGTH < npackets) {
conn->packet_send_rate = min_speed * (1.0 / (send_array_ratio / 2.0));
} else if (conn->last_congestion_event + CONGESTION_EVENT_TIMEOUT < temp_time) {
conn->packet_send_rate = min_speed * 1.2;

View File

@ -39,7 +39,7 @@
#define CRYPTO_PACKET_BUFFER_SIZE 16384 /* Must be a power of 2 */
/* Minimum packet rate per second. */
#define CRYPTO_PACKET_MIN_RATE 8.0
#define CRYPTO_PACKET_MIN_RATE 4.0
/* Minimum packet queue max length. */
#define CRYPTO_MIN_QUEUE_LENGTH 64