changeset in /hg/icedtea6: 2009-03-31 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Mar 31 11:46:20 PDT 2009
changeset bd118814ce2e in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=bd118814ce2e
description:
2009-03-31 Omair Majid <omajid at redhat.com>
* patches/icedtea-network-unreachable.patch: New file. Check for
EHOSTUNREACH and ENETUNREACH early on when establishing a connection.
* Makefile.am (ICEDTEA_PATCHES): Apply the above.
* HACKING: Document the above.
diffstat:
4 files changed, 40 insertions(+)
ChangeLog | 7 ++++++
HACKING | 1
Makefile.am | 1
patches/icedtea-network-unreachable.patch | 31 +++++++++++++++++++++++++++++
diffs (71 lines):
diff -r a537113b9d22 -r bd118814ce2e ChangeLog
--- a/ChangeLog Tue Mar 31 14:03:24 2009 -0400
+++ b/ChangeLog Tue Mar 31 14:43:02 2009 -0400
@@ -1,3 +1,10 @@ 2009-03-31 Omair Majid <omajid at redhat.
+2009-03-31 Omair Majid <omajid at redhat.com>
+
+ * patches/icedtea-network-unreachable.patch: New file. Check for
+ EHOSTUNREACH and ENETUNREACH early on when establishing a connection.
+ * Makefile.am (ICEDTEA_PATCHES): Apply the above.
+ * HACKING: Document the above.
+
2009-03-31 Omair Majid <omajid at redhat.com>
* patches/icedtea-jtreg-printjob-multiple-end.patch: New patch. Dont
diff -r a537113b9d22 -r bd118814ce2e HACKING
--- a/HACKING Tue Mar 31 14:03:24 2009 -0400
+++ b/HACKING Tue Mar 31 14:43:02 2009 -0400
@@ -91,6 +91,7 @@ The following patches are currently appl
* icedtea-jtreg-dnd.patch: Fix classpath issues in java/awt/dnd/FileListBetweenJVMsTest.
* icedtea-jtreg-colortest.patch: Remove call to System.exit() that was causing SystemBgColorTest to fail.
* icedtea-jtreg-printjob-multiple-end.patch: Fix test to not require any user interaction.
+* icedtea-network-unreachable.patch: Check for ENETUNREACH and EHOSTUNREACH early on when doing a Socket.connect().
The following patches are only applied to OpenJDK6 in IcedTea6:
diff -r a537113b9d22 -r bd118814ce2e Makefile.am
--- a/Makefile.am Tue Mar 31 14:03:24 2009 -0400
+++ b/Makefile.am Tue Mar 31 14:43:02 2009 -0400
@@ -690,6 +690,7 @@ ICEDTEA_PATCHES += \
patches/icedtea-jtreg-dnd.patch \
patches/icedtea-jtreg-colortest.patch \
patches/icedtea-jtreg-printjob-multiple-end.patch \
+ patches/icedtea-network-unreachable.patch \
$(DISTRIBUTION_PATCHES)
stamps/extract.stamp: stamps/download.stamp
diff -r a537113b9d22 -r bd118814ce2e patches/icedtea-network-unreachable.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-network-unreachable.patch Tue Mar 31 14:43:02 2009 -0400
@@ -0,0 +1,31 @@
+--- openjdk/jdk/src/solaris/native/java/net/PlainSocketImpl.c.orig 2008-11-25 04:06:19.000000000 -0500
++++ openjdk/jdk/src/solaris/native/java/net/PlainSocketImpl.c 2009-03-20 16:58:35.000000000 -0400
+@@ -410,8 +410,16 @@
+ jlong prevTime = JVM_CurrentTimeMillis(env, 0);
+
+ if (errno != EINPROGRESS) {
+- NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "ConnectException",
+- "connect failed");
++ if (errno == EHOSTUNREACH) {
++ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "NoRouteToHostException",
++ "Host unreachable");
++ } else if (errno == ENETUNREACH) {
++ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "NoRouteToHostException",
++ "Network unreachable");
++ } else {
++ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "ConnectException",
++ "connect failed");
++ }
+ SET_BLOCKING(fd);
+ return;
+ }
+@@ -540,6 +548,9 @@
+ } else if (errno == EHOSTUNREACH) {
+ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "NoRouteToHostException",
+ "Host unreachable");
++ } else if (errno == ENETUNREACH) {
++ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "NoRouteToHostException",
++ "Network unreachable");
+ } else if (errno == EADDRNOTAVAIL) {
+ NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "NoRouteToHostException",
+ "Address not available");
More information about the distro-pkg-dev
mailing list