- The LispApplicationDataLCAFAddress API changed in this
upstream change:
https://git.opendaylight.org/gerrit/#/c/21251/
- Not sure if we should be using getLocalPortLow() or getLocalPortHigh()
using Low for now.
Change-Id: Iff000b753576a9ad9a18b994c755be11e3962cd7
Signed-off-by: Brady Johnson <[email protected]>
public static Ip createLocator(LcafApplicationData applicationData) {
IpAddress ip = new IpAddress(new Ipv4Address(InetAddresses.fromInteger(
applicationData.getLcafApplicationDataAddr().getIpTos()).getHostAddress()));
- Ip locatorType = new IpBuilder().setIp(ip).setPort(applicationData.getLcafApplicationDataAddr().getLocalPort())
+ Ip locatorType = new IpBuilder().setIp(ip).setPort(applicationData.getLcafApplicationDataAddr().getLocalPortLow())
.build();
return locatorType;
}