mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 20:43:44 +02:00
add assignedAddresses member to VirtualNetworConfig class
Signed-off-by: Grant Limberg <glimberg@gmail.com>
This commit is contained in:
parent
787b4a8e50
commit
3a6807d584
1 changed files with 4 additions and 2 deletions
|
@ -29,9 +29,12 @@ package com.zerotierone.sdk;
|
||||||
|
|
||||||
import java.lang.String;
|
import java.lang.String;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.net.InetAddresss;
|
||||||
|
|
||||||
public class VirtualNetworkConfig {
|
public class VirtualNetworkConfig {
|
||||||
public static final int MAX_MULTICAST_SUBSCRIPTIONS = 4096;
|
public static final int MAX_MULTICAST_SUBSCRIPTIONS = 4096;
|
||||||
|
public static final int ZT1_MAX_ZT_ASSIGNED_ADDRESSES = 16;
|
||||||
|
|
||||||
private long nwid;
|
private long nwid;
|
||||||
private long mac;
|
private long mac;
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -46,6 +49,5 @@ public class VirtualNetworkConfig {
|
||||||
private long netconfRevision;
|
private long netconfRevision;
|
||||||
private int multicastSubscriptionCount;
|
private int multicastSubscriptionCount;
|
||||||
private ArrayList<MulticastGroup> multicastSubscriptions;
|
private ArrayList<MulticastGroup> multicastSubscriptions;
|
||||||
|
private ArrayList<InetAddress> assignedAddresses;
|
||||||
// TODO: sockaddr_storage
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue