1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Add congestion control settings to minetest.conf

This commit is contained in:
Perttu Ahola 2012-11-27 09:38:21 +02:00
parent 7b6d642300
commit ab45133ab4
4 changed files with 40 additions and 12 deletions

View file

@ -394,7 +394,11 @@ public:
float m_max_packets_per_second;
int m_num_sent;
int m_max_num_sent;
// Updated from configuration by Connection
float congestion_control_aim_rtt;
float congestion_control_max_rate;
float congestion_control_min_rate;
private:
};