static method for compressing ipv6 addresses
This commit is contained in:
parent
329a75525e
commit
cc5547a962
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ public class IPAddress extends MoteInterface {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String compressIPv6Address(String ipString) {
|
public static String compressIPv6Address(String ipString) {
|
||||||
while (ipString.contains(":0000:")) {
|
while (ipString.contains(":0000:")) {
|
||||||
ipString = ipString.replaceAll(":0000:", "::");
|
ipString = ipString.replaceAll(":0000:", "::");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue