icmp_stub.go 414 B

1234567891011121314151617181920
  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. // +build nacl plan9
  5. package ipv6
  6. type sysICMPv6Filter struct {
  7. }
  8. func (f *sysICMPv6Filter) set(typ ICMPType, block bool) {
  9. }
  10. func (f *sysICMPv6Filter) setAll(block bool) {
  11. }
  12. func (f *sysICMPv6Filter) willBlock(typ ICMPType) bool {
  13. return false
  14. }