3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-06 00:00:47 +01:00

Add flag to disable native transports

Dieser Commit ist enthalten in:
Andrew Steinborn 2019-07-12 14:32:37 -04:00
Ursprung 145dfa8ac6
Commit 58b52cce0c

Datei anzeigen

@ -67,6 +67,10 @@ enum TransportType {
} }
public static TransportType bestType() { public static TransportType bestType() {
if (Boolean.getBoolean("velocity.disable-native-transport")) {
return NIO;
}
if (Epoll.isAvailable()) { if (Epoll.isAvailable()) {
return EPOLL; return EPOLL;
} else if (KQueue.isAvailable()) { } else if (KQueue.isAvailable()) {