blob: 443cd0736762d9cfbf8b8068dc5bd8590643046e [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// 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}