~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/net/sockoptip_stub.go

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2014-11-18 15:12:26 UTC
  • mfrom: (14.2.12 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20141118151226-zug7vn93mn3dtiz3
Tags: 2:1.3.2-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - Support co-installability with gccgo-go tool:
    - d/rules,golang-go.install: Rename bin/go -> bin/golang-go
    - d/golang-go.{postinst,prerm}: Install/remove /usr/bin/go using
      alternatives.
  - d/copyright: Amendments for full compiliance with copyright format.
  - d/control: Demote golang-go.tools to Suggests to support Ubuntu MIR.
  - dropped patches (now upstream):
    - d/p/issue27650045_40001_50001.diff
    - d/p/issue28050043_60001_70001.diff
    - d/p/issue54790044_100001_110001.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2011 The Go Authors.  All rights reserved.
 
2
// Use of this source code is governed by a BSD-style
 
3
// license that can be found in the LICENSE file.
 
4
 
 
5
// +build solaris
 
6
 
 
7
package net
 
8
 
 
9
import "syscall"
 
10
 
 
11
func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
 
12
        // See golang.org/issue/7399.
 
13
        return syscall.EINVAL
 
14
}
 
15
 
 
16
func setIPv4MulticastLoopback(fd *netFD, v bool) error {
 
17
        // See golang.org/issue/7399.
 
18
        return syscall.EINVAL
 
19
}
 
20
 
 
21
func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
 
22
        // See golang.org/issue/7399.
 
23
        return syscall.EINVAL
 
24
}
 
25
 
 
26
func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
 
27
        // See golang.org/issue/7399.
 
28
        return syscall.EINVAL
 
29
}
 
30
 
 
31
func setIPv6MulticastLoopback(fd *netFD, v bool) error {
 
32
        // See golang.org/issue/7399.
 
33
        return syscall.EINVAL
 
34
}
 
35
 
 
36
func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
 
37
        // See golang.org/issue/7399.
 
38
        return syscall.EINVAL
 
39
}