summaryrefslogtreecommitdiffhomepage
path: root/wgengine/filter/match_clone.go
blob: 04874ddec6857f28d85ac1352455b41a9be5b192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Code generated by tailscale.com/cmd/cloner -type Match; DO NOT EDIT.

package filter

import (
	"inet.af/netaddr"
	"tailscale.com/types/ipproto"
)

// Clone makes a deep copy of Match.
// The result aliases no memory with the original.
func (src *Match) Clone() *Match {
	if src == nil {
		return nil
	}
	dst := new(Match)
	*dst = *src
	dst.IPProto = append(src.IPProto[:0:0], src.IPProto...)
	dst.Dsts = append(src.Dsts[:0:0], src.Dsts...)
	dst.Srcs = append(src.Srcs[:0:0], src.Srcs...)
	return dst
}

// A compilation failure here means this code must be regenerated, with command:
//   tailscale.com/cmd/cloner -type Match
var _MatchNeedsRegeneration = Match(struct {
	IPProto []ipproto.Proto
	Dsts    []NetPortRange
	Srcs    []netaddr.IPPrefix
}{})