Increase default mtu to 1500

This commit is contained in:
Erik Ekman 2009-03-04 21:27:48 +00:00
parent 9e83af07da
commit 21808e708d
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@ CHANGES:
The normal code was never affected by this.
- Added win32 code to read DNS server from system, fixes #45.
- Disabled password echo on win32, fixes #44.
- Fix encoding error making all autoprobing > 1024 bytes fail, #52.
- Increase default interface MTU to 1500.
2009-01-23: 0.5.0 "iPassed"
- Fixed segfault in server when sending version reject.

View File

@ -969,7 +969,7 @@ main(int argc, char **argv)
foreground = 0;
bind_enable = 0;
bind_fd = 0;
mtu = 1024;
mtu = 1500;
listen_ip = INADDR_ANY;
port = 53;
ns_ip = INADDR_ANY;