From aa256d58588182499704babc8e252f9fddc25c02 Mon Sep 17 00:00:00 2001 From: irungentoo Date: Wed, 4 Jun 2014 17:55:07 -0400 Subject: Doubled minimum transfer rate. File transfers got stuck because it was too low. --- toxcore/net_crypto.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'toxcore/net_crypto.c') diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c index be450499..4c2a8faa 100644 --- a/toxcore/net_crypto.c +++ b/toxcore/net_crypto.c @@ -859,7 +859,8 @@ static int send_request_packet(Net_Crypto *c, int crypt_connection_id) if (len == -1) return -1; - return send_data_packet_helper(c, crypt_connection_id, conn->recv_array.buffer_start, conn->send_array.buffer_end, data, len); + return send_data_packet_helper(c, crypt_connection_id, conn->recv_array.buffer_start, conn->send_array.buffer_end, data, + len); } /* Send up to max num previously requested data packets. -- cgit v1.2.3