summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip')
-rw-r--r--pkg/tcpip/iptables/types.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/tcpip/iptables/types.go b/pkg/tcpip/iptables/types.go
index fe0394a31..540f8c0b4 100644
--- a/pkg/tcpip/iptables/types.go
+++ b/pkg/tcpip/iptables/types.go
@@ -113,11 +113,11 @@ type Table struct {
// Rules holds the rules that make up the table.
Rules []Rule
- // BuiltinChains maps builtin chains to their entrypoints.
+ // BuiltinChains maps builtin chains to their entrypoint rule in Rules.
BuiltinChains map[Hook]int
- // Underflows maps builtin chains to their underflow point (i.e. the
- // rule to execute if the chain returns without a verdict).
+ // Underflows maps builtin chains to their underflow rule in Rules
+ // (i.e. the rule to execute if the chain returns without a verdict).
Underflows map[Hook]int
// UserChains holds user-defined chains for the keyed by name. Users