icmp_stub.go 542 B

123456789101112131415161718192021222324
  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 solaris
  5. package ipv6
  6. type sysICMPFilter struct {
  7. // TODO(mikio): Implement this
  8. }
  9. func (f *sysICMPFilter) set(typ ICMPType, block bool) {
  10. // TODO(mikio): Implement this
  11. }
  12. func (f *sysICMPFilter) setAll(block bool) {
  13. // TODO(mikio): Implement this
  14. }
  15. func (f *sysICMPFilter) willBlock(typ ICMPType) bool {
  16. // TODO(mikio): Implement this
  17. return false
  18. }