Example #1
0
File: ARP.java Project: jmdbo/CGR
  /** @return True if gratuitous ARP (SPA = TPA), false otherwise */
  public boolean isGratuitous() {
    assert (senderProtocolAddress.getLength() == targetProtocolAddress.getLength());

    return senderProtocolAddress.equals(targetProtocolAddress);
  }