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

Side by Side Diff: src/pkg/net/interface_openbsd.go

Issue 5294074: code review 5294074: src/pkg/[n-z]*: gofix -r error (Closed)
Patch Set: diff -r b78bb4f2d2a3 https://go.googlecode.com/hg/ Created 13 years, 4 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:
View unified diff | Download patch
« no previous file with comments | « src/pkg/net/interface_linux.go ('k') | src/pkg/net/interface_stub.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 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 // Network interface identification for OpenBSD 5 // Network interface identification for OpenBSD
6 6
7 package net 7 package net
8 8
9 import "os"
10
11 // If the ifindex is zero, interfaceMulticastAddrTable returns 9 // If the ifindex is zero, interfaceMulticastAddrTable returns
12 // addresses for all network interfaces. Otherwise it returns 10 // addresses for all network interfaces. Otherwise it returns
13 // addresses for a specific interface. 11 // addresses for a specific interface.
14 func interfaceMulticastAddrTable(ifindex int) ([]Addr, os.Error) { 12 func interfaceMulticastAddrTable(ifindex int) ([]Addr, error) {
15 return nil, nil 13 return nil, nil
16 } 14 }
OLDNEW
« no previous file with comments | « src/pkg/net/interface_linux.go ('k') | src/pkg/net/interface_stub.go » ('j') | no next file with comments »

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