mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 22:10:25 +08:00
15 lines
307 B
Go
15 lines
307 B
Go
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
//go:build linux
|
|
|
|
package nftables
|
|
|
|
import nft "github.com/google/nftables"
|
|
|
|
type ChainPolicy = nft.ChainPolicy
|
|
|
|
// Possible ChainPolicy values.
|
|
const (
|
|
ChainPolicyDrop = nft.ChainPolicyDrop
|
|
ChainPolicyAccept = nft.ChainPolicyAccept
|
|
)
|