2011-05-31 Gabriel Charette <gchare@google.com>
[official-gcc.git] / libgo / syscalls / socket_solaris.go
blob13fe727c33ea2991ddb13c4d0d15b7dd4de251ac
1 // socket_solaris.go -- Socket handling specific to Solaris.
3 // Copyright 2010 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 package syscall
9 const SizeofSockaddrInet4 = 16
10 const SizeofSockaddrInet6 = 32
11 const SizeofSockaddrUnix = 110
13 type RawSockaddrInet4 struct {
14 Family uint16
15 Port uint16
16 Addr [4]byte /* in_addr */
17 Zero [8]uint8
20 func (sa *RawSockaddrInet4) setLen() Socklen_t {
21 return SizeofSockaddrInet4
24 type RawSockaddrInet6 struct {
25 Family uint16
26 Port uint16
27 Flowinfo uint32
28 Addr [16]byte /* in6_addr */
29 Scope_id uint32
30 Src_id uint32
33 func (sa *RawSockaddrInet6) setLen() Socklen_t {
34 return SizeofSockaddrInet6
37 type RawSockaddrUnix struct {
38 Family uint16
39 Path [108]int8
42 func (sa *RawSockaddrUnix) setLen(int) {
45 func (sa *RawSockaddrUnix) getLen() (int, int) {
46 if sa.Path[0] == 0 {
47 // "Abstract" Unix domain socket.
48 // Rewrite leading NUL as @ for textual display.
49 // (This is the standard convention.)
50 // Not friendly to overwrite in place,
51 // but the callers below don't care.
52 sa.Path[0] = '@'
55 // Assume path ends at NUL.
56 // This is not technically the Linux semantics for
57 // abstract Unix domain sockets--they are supposed
58 // to be uninterpreted fixed-size binary blobs--but
59 // everyone uses this convention.
60 n := 0
61 for n < len(sa.Path) - 3 && sa.Path[n] != 0 {
62 n++
65 return n, 0
68 type RawSockaddr struct {
69 Family uint16
70 Data [14]int8
73 // BindToDevice binds the socket associated with fd to device.
74 func BindToDevice(fd int, device string) (errno int) {
75 return ENOSYS