Hi all,
I met a Selector error in IPV6 only environment (Windows 2008)
I run this snippet and my computer is crashed (memory dump and reset PC).
Thank all for your helpPHP Code:
import java.io.IOException;
import java.nio.channels.Selector;
public class DumpTest {
public static void main(String[] args) throws IOException
{
Selector selector = Selector.open();
}
}