Add implementation of getInterfaceHash()

Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 136065010
Test: m
Change-Id: I314f19aeca82cc8653eab71c9526ea7a208e6b50
Merged-In: I314f19aeca82cc8653eab71c9526ea7a208e6b50
This commit is contained in:
Paul Trautrim
2020-01-23 14:55:57 +09:00
parent 68578dd2ce
commit bbfcd5421b
3 changed files with 15 additions and 0 deletions

View File

@@ -301,6 +301,11 @@ public class IpServer extends StateMachine {
public int getInterfaceVersion() {
return this.VERSION;
}
@Override
public String getInterfaceHash() {
return this.HASH;
}
}
private class DhcpServerCallbacksImpl extends DhcpServerCallbacks {