Compare commits

...

2 Commits

Author SHA1 Message Date
xelara 321eca90c4 Patched config generation 2026-06-23 18:48:03 -04:00
xelara 20e234d07f Patched config generation 2026-06-23 18:47:41 -04:00
6 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -425,7 +425,7 @@ The backend server must be allowed to make outbound TCP connections to the proxy
## Reconnect Behavior ## Reconnect Behavior
DirtSimpleP2P is tuned to detect real drops quickly while still tolerating short latency spikes. DirtSimpleP2P is tuned to detect real drops quickly while still tolerating short latency spikes.
Default behavior: Default behavior:
Binary file not shown.
@@ -13,7 +13,6 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.nio.file.Files; import java.nio.file.Files;
import java.nio.file.Path; import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
@@ -249,7 +248,7 @@ public final class PluginRuntime {
if (input == null) { if (input == null) {
throw new IOException("Missing bundled config resource: " + resourceName); throw new IOException("Missing bundled config resource: " + resourceName);
} }
Files.copy(input, configPath, StandardCopyOption.COPY_ATTRIBUTES); Files.copy(input, configPath);
} }
logger.warning("Created default DirtSimpleP2P config at " + configPath logger.warning("Created default DirtSimpleP2P config at " + configPath
Binary file not shown.