Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-05-14 00:48:42 +0000
committereutarass2010-05-14 00:48:42 +0000
commitc19a2f05f16f87ceee54dd848fd5f503a5ecbebb (patch)
tree30ff1d6d512a479779bcd7872490833dffbd54e0
parent24f7ffbb4e5ad51ce6f8c620ae0c6e458d6d13c4 (diff)
downloadorg.eclipse.tcf-c19a2f05f16f87ceee54dd848fd5f503a5ecbebb.tar.gz
org.eclipse.tcf-c19a2f05f16f87ceee54dd848fd5f503a5ecbebb.tar.xz
org.eclipse.tcf-c19a2f05f16f87ceee54dd848fd5f503a5ecbebb.zip
TCF Core: added comments about discovery over IPv6 in Locator service code
-rw-r--r--plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/internal/tcf/services/local/LocatorService.java31
1 files changed, 27 insertions, 4 deletions
diff --git a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/internal/tcf/services/local/LocatorService.java b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/internal/tcf/services/local/LocatorService.java
index c648a976e..909116ee7 100644
--- a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/internal/tcf/services/local/LocatorService.java
+++ b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/internal/tcf/services/local/LocatorService.java
@@ -80,9 +80,9 @@ public class LocatorService implements ILocator {
}
boolean contains(InetAddress addr) {
- if (addr == null || broadcast == null) return false;
+ if (addr == null || address == null) return false;
byte[] a1 = addr.getAddress();
- byte[] a2 = broadcast.getAddress();
+ byte[] a2 = address.getAddress();
if (a1.length != a2.length) return false;
int i = 0;
while (i + 8 <= prefix_length) {
@@ -111,12 +111,12 @@ public class LocatorService implements ILocator {
@Override
public int hashCode() {
- return broadcast.hashCode();
+ return address.hashCode();
}
@Override
public String toString() {
- return broadcast.getHostAddress() + "/" + prefix_length;
+ return address.getHostAddress() + "/" + prefix_length;
}
}
@@ -513,6 +513,29 @@ public class LocatorService implements ILocator {
broadcast = InetAddress.getByAddress(buf);
}
}
+
+ // TODO: discovery over IPv6
+
+ /* Create IPv6 broadcast address.
+ * The code does not work - commented out until fixed.
+ if (broadcast == null &&
+ address instanceof Inet6Address &&
+ !address.isAnyLocalAddress() &&
+ !address.isLinkLocalAddress() &&
+ !address.isMulticastAddress() &&
+ !address.isLoopbackAddress()) {
+ byte[] net = address.getAddress();
+ byte[] buf = new byte[16];
+ buf[0] = (byte)0xff; // multicast
+ buf[1] = (byte)0x32; // flags + scope
+ buf[2] = (byte)0x00; // reserved
+ buf[3] = (byte)network_prefix_len;
+ int n = (network_prefix_len + 7) / 8;
+ for (int i = 0; i < n; i++) buf[i + 4] = net[i];
+ broadcast = Inet6Address.getByAddress(null, buf);
+ }
+ */
+
if (network_prefix_len > 0 && address != null && broadcast != null) {
set.add(new SubNet(network_prefix_len, address, broadcast));
}

Back to the top