Try loading native cipher from java.library.path first

This commit is contained in:
zreed 2014-12-15 19:32:13 -05:00 committed by md_5
parent 972b4c1fe5
commit 22084b2c75

View File

@ -29,6 +29,16 @@ public class NativeCipher implements BungeeCipher
public static boolean load() public static boolean load()
{ {
if ( !loaded && isSupported() ) if ( !loaded && isSupported() )
{
try
{
System.loadLibrary( "bungeecord-native-cipher" );
loaded = true;
} catch ( Throwable t )
{
}
if ( !loaded )
{ {
try ( InputStream lib = BungeeCipher.class.getClassLoader().getResourceAsStream( "native-cipher.so" ) ) try ( InputStream lib = BungeeCipher.class.getClassLoader().getResourceAsStream( "native-cipher.so" ) )
{ {
@ -46,6 +56,7 @@ public class NativeCipher implements BungeeCipher
{ {
} }
} }
}
return loaded; return loaded;
} }