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