github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/controller/internal/supervisor/iptablesctrl/constants_nonwindows.go (about)

     1  // +build !windows
     2  
     3  package iptablesctrl
     4  
     5  const (
     6  	ipTableSectionOutput     = "OUTPUT"
     7  	ipTableSectionPreRouting = "PREROUTING"
     8  	appPacketIPTableContext  = "mangle"
     9  	netPacketIPTableContext  = "mangle"
    10  	appProxyIPTableContext   = "nat"
    11  
    12  	customQOSChainNFHook = "POSTROUTING"
    13  	customQOSChainTable  = "mangle"
    14  	// CustomQOSChain is the name of the chain where users can install custom QOS rules
    15  	CustomQOSChain = "POST-CUSTOM-QOS"
    16  )