mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-09 03:50:27 +08:00
14 lines
295 B
Go
14 lines
295 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package nftables
|
|
|
|
import nft "github.com/google/nftables"
|
|
|
|
type ChainPolicy = nft.ChainPolicy
|
|
|
|
// Possible ChainPolicy values.
|
|
const (
|
|
ChainPolicyDrop = nft.ChainPolicyDrop
|
|
ChainPolicyAccept = nft.ChainPolicyAccept
|
|
)
|