diff options
author | proller <proller@github.com> | 2013-06-23 11:31:22 +0400 |
---|---|---|
committer | proller <proller@github.com> | 2013-06-23 11:31:22 +0400 |
commit | f960c3be313c761fe02f9167dc1fe3fca5dc4ada (patch) | |
tree | 54543a7e61e6ed273840d9bcba6bc9655add5243 /src/constants.h | |
parent | 309c5f3641dccaf1260953f098ccd593396dee64 (diff) | |
download | minetest-f960c3be313c761fe02f9167dc1fe3fca5dc4ada.tar.gz minetest-f960c3be313c761fe02f9167dc1fe3fca5dc4ada.tar.bz2 minetest-f960c3be313c761fe02f9167dc1fe3fca5dc4ada.zip |
Add support for IPv6
Two new configuration options are added:
- "enable_ipv6" to enable/disable the overall use of IPv6
- "ipv6_server" to enable/disable the use of IPv6 sockets when running
a server (when "enable_ipv6" is enabled)
Diffstat (limited to 'src/constants.h')
-rw-r--r-- | src/constants.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/constants.h b/src/constants.h index 8246c8c21..e9d9f884a 100644 --- a/src/constants.h +++ b/src/constants.h @@ -36,6 +36,7 @@ with this program; if not, write to the Free Software Foundation, Inc., // Causes the socket class to deliberately drop random packets. // This disables unit testing of socket and connection. #define INTERNET_SIMULATOR 0 +#define INTERNET_SIMULATOR_PACKET_LOSS 10 // 10 = easy, 4 = hard #define CONNECTION_TIMEOUT 30 |