icmp_plan9.go 512 B

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