diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-06-26 04:24:43 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-26 04:24:43 +0000 |
commit | a09f0255aace0f20dee309e1616a9c41dcfabf50 (patch) | |
tree | 5f7ce0a5d34c54969c324de9bb29a5ee554637ce /pkg/sentry/socket | |
parent | a532fd815a0f00e99b01380d1920782fec16ea3c (diff) | |
parent | 7fb6cc286fffab2f408a5dbc228e0db706104682 (diff) |
Merge release-20200622.1-23-g7fb6cc286 (automated)
Diffstat (limited to 'pkg/sentry/socket')
-rw-r--r-- | pkg/sentry/socket/netfilter/targets.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/socket/netfilter/targets.go b/pkg/sentry/socket/netfilter/targets.go index 84abe8d29..b91ba3ab3 100644 --- a/pkg/sentry/socket/netfilter/targets.go +++ b/pkg/sentry/socket/netfilter/targets.go @@ -30,6 +30,6 @@ type JumpTarget struct { } // Action implements stack.Target.Action. -func (jt JumpTarget) Action(*stack.PacketBuffer, *stack.ConnTrackTable, stack.Hook, *stack.GSO, *stack.Route, tcpip.Address) (stack.RuleVerdict, int) { +func (jt JumpTarget) Action(*stack.PacketBuffer, *stack.ConnTrack, stack.Hook, *stack.GSO, *stack.Route, tcpip.Address) (stack.RuleVerdict, int) { return stack.RuleJump, jt.RuleNum } |