From e2d388b13799ddbe5ba2a81b442d6481cec5b611 Mon Sep 17 00:00:00 2001 From: notsecure Date: Thu, 10 Jul 2014 10:34:38 -0400 Subject: fix send rate going up when peer disconnects --- toxcore/net_crypto.c | 28 ++++++++++++++++++++++++++-- toxcore/net_crypto.h | 4 ++-- 2 files changed, 28 insertions(+), 4 deletions(-) (limited to 'toxcore') diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c index e0319f34..bc22a23e 100644 --- a/toxcore/net_crypto.c +++ b/toxcore/net_crypto.c @@ -2250,6 +2250,24 @@ static void send_crypto_packets(Net_Crypto *c) notes: needs improvement but seems to work fine for packet loss <1% */ + /* additional step: adjust the send rate based on the size change of the send queue */ + uint32_t queue_size = num_packets_array(&conn->send_array); + if(queue_size > conn->last_queue_size + 100) { + double v1 = (double)(conn->packets_sent) / (double)(queue_size); + double v2 = (double)(conn->last_packets_sent) / (double)(conn->last_queue_size == 0 ? 1 : conn->last_queue_size); + if(v1 < v2) { + conn->packets_resent = conn->packets_sent; + conn->rate_increase = 0; + } + + conn->last_queue_size = queue_size; + conn->last_packets_sent = conn->packets_sent; + } else if(queue_size < conn->last_queue_size) { + conn->last_queue_size = queue_size; + conn->last_packets_sent = conn->packets_sent; + } + + //hack to prevent 1 packet lost from affecting calculations at low send rates if (conn->packets_resent == 1) { conn->packets_resent = 0; @@ -2300,18 +2318,22 @@ static void send_crypto_packets(Net_Crypto *c) double linear_increase = realrate * 0.0025 + 1.0; //final send rate: average of "real" and previous send rates + increases - conn->packet_send_rate = (realrate + conn->packet_send_rate) / 2.0 + conn->rate_increase + linear_increase; + double newrate = (realrate + conn->packet_send_rate) / 2.0 + conn->rate_increase + linear_increase; + conn->last_send_rate = conn->packet_send_rate; + conn->packet_send_rate = newrate; conn->dropped = dropped; conn->drop_ignore = drop_ignore_new; conn->packets_resent = 0; - if (conn->packet_send_rate < CRYPTO_PACKET_MIN_RATE || !conn->sending) { + if (conn->packet_send_rate < CRYPTO_PACKET_MIN_RATE || !conn->sending || !conn->packets_sent) { conn->rate_increase = 0; conn->packet_send_rate = CRYPTO_PACKET_MIN_RATE; } + conn->packets_sent = 0; + if (conn->sending != 0 && num_packets_array(&conn->send_array) < CRYPTO_MIN_QUEUE_LENGTH / 2) { --conn->sending; } @@ -2342,6 +2364,7 @@ static void send_crypto_packets(Net_Crypto *c) conn->packets_resent += ret; conn->packets_left -= ret; + conn->packets_sent += ret; } if (conn->packet_send_rate > CRYPTO_PACKET_MIN_RATE * 1.5) { @@ -2421,6 +2444,7 @@ int64_t write_cryptpacket(const Net_Crypto *c, int crypt_connection_id, const ui return -1; --conn->packets_left; + conn->packets_sent++; conn->sending = CONN_SENDING_VALUE; return ret; } diff --git a/toxcore/net_crypto.h b/toxcore/net_crypto.h index 4fed0000..2bc9a716 100644 --- a/toxcore/net_crypto.h +++ b/toxcore/net_crypto.h @@ -143,9 +143,9 @@ typedef struct { uint32_t packets_left; uint64_t last_packets_left_set; - double dropped, drop_ignore, rate_increase; + double dropped, drop_ignore, rate_increase, last_send_rate; uint64_t drop_ignore_start, rate_increase_stop_start; - uint32_t packets_resent; + uint32_t packets_resent, last_queue_size, packets_sent, last_packets_sent; uint8_t sending; /* indicates if data is being sent or not. */ -- cgit v1.2.3 From a5d2775c2570121c34a13d248662adb5c4770f9b Mon Sep 17 00:00:00 2001 From: notsecure Date: Fri, 11 Jul 2014 10:23:40 -0400 Subject: . --- toxcore/net_crypto.c | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'toxcore') diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c index bc22a23e..7c0dd77b 100644 --- a/toxcore/net_crypto.c +++ b/toxcore/net_crypto.c @@ -2252,19 +2252,9 @@ static void send_crypto_packets(Net_Crypto *c) /* additional step: adjust the send rate based on the size change of the send queue */ uint32_t queue_size = num_packets_array(&conn->send_array); - if(queue_size > conn->last_queue_size + 100) { - double v1 = (double)(conn->packets_sent) / (double)(queue_size); - double v2 = (double)(conn->last_packets_sent) / (double)(conn->last_queue_size == 0 ? 1 : conn->last_queue_size); - if(v1 < v2) { - conn->packets_resent = conn->packets_sent; - conn->rate_increase = 0; - } - - conn->last_queue_size = queue_size; - conn->last_packets_sent = conn->packets_sent; - } else if(queue_size < conn->last_queue_size) { - conn->last_queue_size = queue_size; - conn->last_packets_sent = conn->packets_sent; + if(queue_size > conn->packet_send_rate && queue_size > conn->last_queue_size) { + conn->rate_increase = 0; + conn->packets_resent = conn->packets_sent; } @@ -2326,6 +2316,7 @@ static void send_crypto_packets(Net_Crypto *c) conn->dropped = dropped; conn->drop_ignore = drop_ignore_new; conn->packets_resent = 0; + conn->last_queue_size = queue_size; if (conn->packet_send_rate < CRYPTO_PACKET_MIN_RATE || !conn->sending || !conn->packets_sent) { conn->rate_increase = 0; -- cgit v1.2.3