Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(142)

Delta Between Two Patch Sets: ipv6/dgramopt_stub.go

Issue 98440046: code review 98440046: go.net/ipv6: add stubs for nacl build (Closed)
Left Patch Set: Created 10 years, 10 months ago
Right Patch Set: diff -r 4b295625c8fb https://code.google.com/p/go.net Created 10 years, 10 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « ipv6/control_rfc3542_stub.go ('k') | ipv6/genericopt_stub.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b