icmp_solaris.go 548 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 solaris
  5. package ipv6
  6. func (f *sysICMPv6Filter) accept(typ ICMPType) {
  7. // TODO(mikio): implement this
  8. }
  9. func (f *sysICMPv6Filter) block(typ ICMPType) {
  10. // TODO(mikio): implement this
  11. }
  12. func (f *sysICMPv6Filter) setAll(block bool) {
  13. // TODO(mikio): implement this
  14. }
  15. func (f *sysICMPv6Filter) willBlock(typ ICMPType) bool {
  16. // TODO(mikio): implement this
  17. return false
  18. }