15 lines
289 B
Go
15 lines
289 B
Go
package table
|
|
|
|
import "iptables-helper/pkg/utils/iptables"
|
|
|
|
const DEFAULT iptables.Table = FILTER
|
|
const FILTER iptables.Table = "filter"
|
|
|
|
const NAT iptables.Table = "nat"
|
|
|
|
const MANGLE iptables.Table = "mangle"
|
|
|
|
const RAW iptables.Table = "raw"
|
|
|
|
const SECURITY iptables.Table = "security"
|