summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-02-18 02:29:27 +0000
committergVisor bot <gvisor-bot@google.com>2021-02-18 02:29:27 +0000
commit7b56be1ab4974cfbfd411df5edcadfd053208150 (patch)
tree4dfcba7cb509b380334b88f07ccf847fe05123c5 /pkg/tcpip
parent2d9dc3c1b7be34442f224a10013dd5f3823c962a (diff)
parent1fc2c5f750bc90d75a3ac19fc95145a748a3811f (diff)
Merge release-20210208.0-65-g1fc2c5f75 (automated)
Diffstat (limited to 'pkg/tcpip')
-rw-r--r--pkg/tcpip/stack/iptables_types.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/tcpip/stack/iptables_types.go b/pkg/tcpip/stack/iptables_types.go
index fd9d61e39..b0d84befb 100644
--- a/pkg/tcpip/stack/iptables_types.go
+++ b/pkg/tcpip/stack/iptables_types.go
@@ -332,9 +332,6 @@ func filterAddress(addr, mask, filterAddr tcpip.Address, invert bool) bool {
// A Matcher is the interface for matching packets.
type Matcher interface {
- // Name returns the name of the Matcher.
- Name() string
-
// Match returns whether the packet matches and whether the packet
// should be "hotdropped", i.e. dropped immediately. This is usually
// used for suspicious packets.