icmp_windows.go 594 B

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