icmp_windows.go raw

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