github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/net/ipv6/icmp_windows.go (about)

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