LEFT | RIGHT |
(no file at all) | |
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 plan9 solaris | 5 // +build nacl plan9 solaris |
6 | 6 |
7 package ipv6 | 7 package ipv6 |
8 | 8 |
9 import "net" | 9 import "net" |
10 | 10 |
11 // MulticastHopLimit returns the hop limit field value for outgoing | 11 // MulticastHopLimit returns the hop limit field value for outgoing |
12 // multicast packets. | 12 // multicast packets. |
13 func (c *dgramOpt) MulticastHopLimit() (int, error) { | 13 func (c *dgramOpt) MulticastHopLimit() (int, error) { |
14 // TODO(mikio): Implement this | 14 // TODO(mikio): Implement this |
15 return 0, errOpNoSupport | 15 return 0, errOpNoSupport |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) { | 86 func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) { |
87 // TODO(mikio): Implement this | 87 // TODO(mikio): Implement this |
88 return nil, errOpNoSupport | 88 return nil, errOpNoSupport |
89 } | 89 } |
90 | 90 |
91 // SetICMPFilter deploys the ICMP filter. | 91 // SetICMPFilter deploys the ICMP filter. |
92 func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error { | 92 func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error { |
93 // TODO(mikio): Implement this | 93 // TODO(mikio): Implement this |
94 return errOpNoSupport | 94 return errOpNoSupport |
95 } | 95 } |
LEFT | RIGHT |