github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/controller/internal/supervisor/iptablesctrl/constants_windows.go (about) 1 // +build windows 2 3 package iptablesctrl 4 5 const ( 6 ipTableSectionOutput = "OUTPUT" 7 ipTableSectionPreRouting = "PREROUTING" 8 appPacketIPTableContext = "OUTPUT" 9 appProxyIPTableContext = "OUTPUT" 10 customQOSChainNFHook = "POSTROUTING" 11 customQOSChainTable = "mangle" 12 // CustomQOSChain is the name of the chain where users can install custom QOS rules 13 CustomQOSChain = "POST-CUSTOM-QOS" 14 netPacketIPTableContext = "INPUT" 15 )