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