receive() method of MulticastSocket fails with IPv6 address on Solaris 8. While testing with a multicast reader and writer, once its receiving properly second time its throwing segmentation fault(core dumped) message on the screen on reader side . Same code is working fine with IPv4 address.
This is coming with merling build 47.
How to reproduce this:
1. Take the attached mcatReader.java and mcastWriter.java files.
2. Execute the writer as follows.
java mcastWriter -d -l 0 -m 40
3. Execute the reader as follows
java mcastReader -d -v -l 100
On reader side find the error " Segmentation fault(code dumped)"
Other INformation:
Same tests are working fine with IPv4 address.
You can execute with IPv4 addresses by commenting out the IPv6 address statement as shown bellow in both mcastReader.java and mcastWriter.java .
private static String maddress = "224.0.0.1";
// private static String maddress = "ff15::1234:1234:1234:1234";
This is coming with merling build 47.
How to reproduce this:
1. Take the attached mcatReader.java and mcastWriter.java files.
2. Execute the writer as follows.
java mcastWriter -d -l 0 -m 40
3. Execute the reader as follows
java mcastReader -d -v -l 100
On reader side find the error " Segmentation fault(code dumped)"
Other INformation:
Same tests are working fine with IPv4 address.
You can execute with IPv4 addresses by commenting out the IPv6 address statement as shown bellow in both mcastReader.java and mcastWriter.java .
private static String maddress = "224.0.0.1";
// private static String maddress = "ff15::1234:1234:1234:1234";
- duplicates
-
JDK-4405111 receive() method of DatagramSocket failed with IPv6 stack with merlin build 47
-
- Closed
-