diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-13 15:14:03 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-13 15:14:03 -0400 |
commit | fc18334dbbd4445a208ed1dcbe4070feaa385ce3 (patch) | |
tree | ecfc33f77db407ec6f83b1679dd6f36c65be8098 /node/Constants.hpp | |
parent | 4ce88d7f725626a42a217412788905aa00c7ce6a (diff) | |
download | infinitytier-fc18334dbbd4445a208ed1dcbe4070feaa385ce3.tar.gz infinitytier-fc18334dbbd4445a208ed1dcbe4070feaa385ce3.zip |
Version 0.4.3 (the real one): fix Gentoo ip config failures and crashes
This version fixes problems with locating the 'ip' command on Gentoo
and possibly other Linux systems, and a problem that could cause a
crash if EthernetTap was unable to locate one of the commands it
invokes to configure IP information on tap devices.
The code also now builds on Windows. It doesn't run yet, but it's a
step. Windows port is in full swing.
Finally, the multicast rate limit defaults were raised a little. More
testing is needed here, and real world measurments.
Diffstat (limited to 'node/Constants.hpp')
-rw-r--r-- | node/Constants.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/node/Constants.hpp b/node/Constants.hpp index 20ec0a6b..f92540d6 100644 --- a/node/Constants.hpp +++ b/node/Constants.hpp @@ -284,22 +284,22 @@ error_no_ZT_ARCH_defined; /** * Default bytes per second limit for multicasts per peer on a network */ -#define ZT_MULTICAST_DEFAULT_BYTES_PER_SECOND 50.0 +#define ZT_MULTICAST_DEFAULT_BYTES_PER_SECOND 100.0 /** * Default balance preload for multicast rate limiters on a network */ -#define ZT_MULTICAST_DEFAULT_RATE_PRELOAD 20000.0 +#define ZT_MULTICAST_DEFAULT_RATE_PRELOAD 25000.0 /** * Default maximum balance for multicast rate limiters */ -#define ZT_MULTICAST_DEFAULT_RATE_MAX_BALANCE 20000.0 +#define ZT_MULTICAST_DEFAULT_RATE_MAX_BALANCE 25000.0 /** * Default minimum balance for multicast rate limiters (max debt) */ -#define ZT_MULTICAST_DEFAULT_RATE_MIN_BALANCE -10000.0 +#define ZT_MULTICAST_DEFAULT_RATE_MIN_BALANCE -5000.0 /** * Delay between scans of the topology active peer DB for peers that need ping |