OLD | NEW |
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 } |
OLD | NEW |