- package example.mymod01;
- import net.minecraftforge.fml.common.Mod;
- import net.minecraftforge.fml.common.Mod.EventHandler;
- import net.minecraftforge.fml.common.event.FMLInitializationEvent;
- @Mod(modid = MyMod01.MODID, version = MyMod01.VERSION)
- public class MyMod01 {
- public static final String MODID = "mymod01";
- public static final String VERSION = "0";
- @EventHandler
- public void init(FMLInitializationEvent e) {
- System.out.println("============DEBUG before pref4:"
- + System.getProperty("java.net.preferIPv4Stack") + " pref6:" + System.getProperty("java.net.preferIPv6Stack"));
- System.setProperty("java.net.preferIPv4Stack", "false");
- System.setProperty("java.net.preferIPv6Stack", "true");
- System.out.println("============DEBUG after pref4:"
- + System.getProperty("java.net.preferIPv4Stack") + " pref6:" + System.getProperty("java.net.preferIPv6Stack"));
- }
- }
- /* Output:
- ...
- [20:55:16] [Client thread/INFO] [STDOUT]: [example.mymod01.MyMod01:init:19]: ============DEBUG before pref4:true pref6:null
- [20:55:16] [Client thread/INFO] [STDOUT]: [example.mymod01.MyMod01:init:23]: ============DEBUG after pref4:false pref6:true
- ...
- (then I try connecting)
- ...
- [20:55:49] [Client thread/INFO]: Connecting to XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX, 25565
- [20:56:11] [Server Connector #1/ERROR]: Couldn't connect to server
- java.net.ConnectException: Connection timed out: no further information: /XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:25565
- at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) ~[?:1.8.0_72]
- at sun.nio.ch.SocketChannelImpl.finishConnect(Unknown Source) ~[?:1.8.0_72]
- at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:208) ~[NioSocketChannel.class:4.0.23.Final]
- at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:287) ~[AbstractNioChannel$AbstractNioUnsafe.class:4.0.23.Final]
- at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:528) ~[NioEventLoop.class:4.0.23.Final]
- at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468) ~[NioEventLoop.class:4.0.23.Final]
- at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382) ~[NioEventLoop.class:4.0.23.Final]
- at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354) ~[NioEventLoop.class:4.0.23.Final]
- at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) ~[SingleThreadEventExecutor$2.class:4.0.23.Final]
- at java.lang.Thread.run(Unknown Source) ~[?:1.8.0_72]
- ...
- */