2017-03-04 06:28:11 +00:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
2015-08-23 13:02:18 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build nacl plan9
|
|
|
|
|
|
|
|
package ipv6
|
|
|
|
|
2017-03-04 06:28:11 +00:00
|
|
|
type icmpv6Filter struct {
|
2015-08-23 13:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 06:28:11 +00:00
|
|
|
func (f *icmpv6Filter) accept(typ ICMPType) {
|
2015-08-23 13:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 06:28:11 +00:00
|
|
|
func (f *icmpv6Filter) block(typ ICMPType) {
|
2015-08-23 13:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 06:28:11 +00:00
|
|
|
func (f *icmpv6Filter) setAll(block bool) {
|
2015-08-23 13:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 06:28:11 +00:00
|
|
|
func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
|
2015-08-23 13:02:18 +00:00
|
|
|
return false
|
|
|
|
}
|