mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-12-30 22:02:29 -08:00
generate javadocs for the Java SDK
This commit is contained in:
parent
0d4283a3fa
commit
56f8160af8
23 changed files with 624 additions and 19 deletions
|
|
@ -27,9 +27,23 @@
|
|||
package com.zerotierone.sdk;
|
||||
|
||||
|
||||
public class MulticastGroup {
|
||||
public final class MulticastGroup {
|
||||
private MulticastGroup() {}
|
||||
|
||||
private long mac;
|
||||
private long adi;
|
||||
|
||||
/**
|
||||
* MAC address (least significant 48 bits)
|
||||
*/
|
||||
public final long getMacAddress() {
|
||||
return mac;
|
||||
}
|
||||
|
||||
/**
|
||||
* Additional distinguishing information (usually zero)
|
||||
*/
|
||||
public final long getAdi() {
|
||||
return adi;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue