OLD | NEW |
1 // Copyright 2013 The Go Authors. All rights reserved. | 1 // Copyright 2013 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // +build nacl plan9 | 5 // +build nacl plan9 |
6 | 6 |
7 package ipv6 | 7 package ipv6 |
8 | 8 |
9 type sysICMPv6Filter struct { | 9 type sysICMPv6Filter struct { |
10 // TODO(mikio): Implement this | |
11 } | 10 } |
12 | 11 |
13 func (f *sysICMPv6Filter) set(typ ICMPType, block bool) { | 12 func (f *sysICMPv6Filter) set(typ ICMPType, block bool) { |
14 // TODO(mikio): Implement this | |
15 } | 13 } |
16 | 14 |
17 func (f *sysICMPv6Filter) setAll(block bool) { | 15 func (f *sysICMPv6Filter) setAll(block bool) { |
18 // TODO(mikio): Implement this | |
19 } | 16 } |
20 | 17 |
21 func (f *sysICMPv6Filter) willBlock(typ ICMPType) bool { | 18 func (f *sysICMPv6Filter) willBlock(typ ICMPType) bool { |
22 // TODO(mikio): Implement this | |
23 return false | 19 return false |
24 } | 20 } |
OLD | NEW |