diff options
| author | Mikio Hara <mikioh.mikioh@gmail.com> | 2017-07-05 09:55:33 +0900 |
|---|---|---|
| committer | Mikio Hara <mikioh.mikioh@gmail.com> | 2017-08-09 23:52:12 +0000 |
| commit | 6362fead876daa44ca7b9696da72a3d4db888ad0 (patch) | |
| tree | 3bb3edc96eb252c305a0406fc7b69115932ce0a2 /src | |
| parent | 3de8498b251b74ffb49d8a679bd10ecb2517af74 (diff) | |
| download | go-6362fead876daa44ca7b9696da72a3d4db888ad0.tar.xz | |
net, internal/poll: enable ListenMulticastUDP on solaris
Fixes #20898.
Change-Id: Ib3a8da34851d8b3681a6802e509fe712d6982df2
Reviewed-on: https://go-review.googlesource.com/47450
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Avelino <t@avelino.xxx>
Diffstat (limited to 'src')
| -rw-r--r-- | src/internal/poll/sockoptip.go | 2 | ||||
| -rw-r--r-- | src/net/sockoptip_bsdvar.go (renamed from src/net/sockoptip_bsd.go) | 2 | ||||
| -rw-r--r-- | src/net/sockoptip_posix.go | 2 | ||||
| -rw-r--r-- | src/net/sockoptip_stub.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/internal/poll/sockoptip.go b/src/internal/poll/sockoptip.go index 5d5dff6ebc..1ee490c257 100644 --- a/src/internal/poll/sockoptip.go +++ b/src/internal/poll/sockoptip.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd windows +// +build darwin dragonfly freebsd linux netbsd openbsd solaris windows package poll diff --git a/src/net/sockoptip_bsd.go b/src/net/sockoptip_bsdvar.go index b11f3a4edb..9560101398 100644 --- a/src/net/sockoptip_bsd.go +++ b/src/net/sockoptip_bsdvar.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd netbsd openbsd +// +build darwin dragonfly freebsd netbsd openbsd solaris package net diff --git a/src/net/sockoptip_posix.go b/src/net/sockoptip_posix.go index 4e10f2a6a5..5d3077e552 100644 --- a/src/net/sockoptip_posix.go +++ b/src/net/sockoptip_posix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd windows +// +build darwin dragonfly freebsd linux netbsd openbsd solaris windows package net diff --git a/src/net/sockoptip_stub.go b/src/net/sockoptip_stub.go index f698687514..fc20a9fc33 100644 --- a/src/net/sockoptip_stub.go +++ b/src/net/sockoptip_stub.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build nacl solaris +// +build nacl package net |
