- bugfix: slow webdav on windows (http://support.microsoft.com/kb/2445570)

- bugfix: windows mount on non-german installations
- bugfix: system-dependent implementation of mount commands now done in specific strategy. no linux-specific URI outside of mount package, thus working on OS X again and simplified windows code
- change: now using ipv6
This commit is contained in:
Sebastian Stenzel
2014-12-15 23:46:06 +01:00
parent ac4f10ce93
commit 8c2fe14e41
13 changed files with 42 additions and 88 deletions
@@ -26,7 +26,7 @@ import org.slf4j.LoggerFactory;
public final class WebDAVServer {
private static final Logger LOG = LoggerFactory.getLogger(WebDAVServer.class);
private static final String LOCALHOST = "127.0.0.1";
private static final String LOCALHOST = "::1";
private static final int MAX_PENDING_REQUESTS = 200;
private static final int MAX_THREADS = 200;
private static final int MIN_THREADS = 4;