1// Copyright 2013 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
5package ipv6
6
7func (f *icmpv6Filter) accept(typ ICMPType) {
8	// TODO(mikio): implement this
9}
10
11func (f *icmpv6Filter) block(typ ICMPType) {
12	// TODO(mikio): implement this
13}
14
15func (f *icmpv6Filter) setAll(block bool) {
16	// TODO(mikio): implement this
17}
18
19func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
20	// TODO(mikio): implement this
21	return false
22}
23