feature/conn25: add IPv6 support
Make the DNS handling portions of conn25 work with IPv6 addresses. Fixes tailscale/corp#37850 Signed-off-by: Fran Bull <fran@tailscale.com>
This commit is contained in:
@@ -104,7 +104,9 @@ type Conn25Attr struct {
|
||||
// Connectors enumerates the app connectors which service these domains.
|
||||
// These can either be "*" to match any advertising connector, or a
|
||||
// tag of the form tag:<tag-name>.
|
||||
Connectors []string `json:"connectors,omitempty"`
|
||||
MagicIPPool []netipx.IPRange `json:"magicIPPool,omitempty"`
|
||||
TransitIPPool []netipx.IPRange `json:"transitIPPool,omitempty"`
|
||||
Connectors []string `json:"connectors,omitempty"`
|
||||
V4MagicIPPool []netipx.IPRange `json:"v4MagicIPPool,omitempty"`
|
||||
V4TransitIPPool []netipx.IPRange `json:"v4TransitIPPool,omitempty"`
|
||||
V6MagicIPPool []netipx.IPRange `json:"v6MagicIPPool,omitempty"`
|
||||
V6TransitIPPool []netipx.IPRange `json:"v6TransitIPPool,omitempty"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user