mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-17 20:46:54 +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.util.ArrayList;
|
||||
import java.net.InetAddresss;
|
||||
|
||||
public class VirtualNetworkConfig {
|
||||
public static final int MAX_MULTICAST_SUBSCRIPTIONS = 4096;
|
||||
public static final int ZT1_MAX_ZT_ASSIGNED_ADDRESSES = 16;
|
||||
|
||||
private long nwid;
|
||||
private long mac;
|
||||
private String name;
|
||||
|
@ -46,6 +49,5 @@ public class VirtualNetworkConfig {
|
|||
private long netconfRevision;
|
||||
private int multicastSubscriptionCount;
|
||||
private ArrayList<MulticastGroup> multicastSubscriptions;
|
||||
|
||||
// TODO: sockaddr_storage
|
||||
private ArrayList<InetAddress> assignedAddresses;
|
||||
}
|
Loading…
Add table
Reference in a new issue