mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
4d56d19b46
control/controlclient, wgengine/filter: extract parsePacketFilter to new constructor in wgengine/filter Signed-off-by: chungdaniel <daniel@tailscale.com>
21 lines
588 B
Go
21 lines
588 B
Go
// 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.
|
|
|
|
package controlclient
|
|
|
|
import (
|
|
"tailscale.com/tailcfg"
|
|
"tailscale.com/wgengine/filter"
|
|
)
|
|
|
|
// Parse a backward-compatible FilterRule used by control's wire format,
|
|
// producing the most current filter.Matches format.
|
|
func (c *Direct) parsePacketFilter(pf []tailcfg.FilterRule) filter.Matches {
|
|
mm, err := filter.MatchesFromFilterRules(pf)
|
|
if err != nil {
|
|
c.logf("parsePacketFilter: %s\n", err)
|
|
}
|
|
return mm
|
|
}
|