blob: 21bb29ab3669a77b92cc80c666dd47d457833980 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build !linux
6
7package ipv4
8
9const sizeofICMPFilter = 0x0
10
11type icmpFilter struct {
12}
13
14func (f *icmpFilter) accept(typ ICMPType) {
15}
16
17func (f *icmpFilter) block(typ ICMPType) {
18}
19
20func (f *icmpFilter) setAll(block bool) {
21}
22
23func (f *icmpFilter) willBlock(typ ICMPType) bool {
24 return false
25}