mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-12-25 11:21:10 -08:00
Logging and adding .equals() methods to MulticastGroup and VirtualNetworkCofnig
This commit is contained in:
parent
7cc64c5cb6
commit
ced040c503
4 changed files with 54 additions and 10 deletions
|
|
@ -33,6 +33,10 @@ public final class MulticastGroup {
|
|||
private long mac;
|
||||
private long adi;
|
||||
|
||||
public boolean equals(MulticastGroup other) {
|
||||
return mac == other.mac && adi == other.adi;
|
||||
}
|
||||
|
||||
/**
|
||||
* MAC address (least significant 48 bits)
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue