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

Delta Between Two Patch Sets: src/pkg/net/unixsock_posix.go

Issue 12916046: code review 12916046: net: make protocol-specific Dial and Listen return cons... (Closed)
Left Patch Set: diff -r 66cd5698247b https://code.google.com/p/go Created 11 years, 7 months ago
Right Patch Set: diff -r 4fd50a6beed3 https://code.google.com/p/go Created 11 years, 7 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/net/udpsock_posix.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 // +build darwin freebsd linux netbsd openbsd windows 5 // +build darwin dragonfly freebsd linux netbsd openbsd windows
6 6
7 package net 7 package net
8 8
9 import ( 9 import (
10 "errors" 10 "errors"
11 "os" 11 "os"
12 "syscall" 12 "syscall"
13 "time" 13 "time"
14 ) 14 )
15 15
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // WriteToUnix writes a packet to addr via c, copying the payload from b. 171 // WriteToUnix writes a packet to addr via c, copying the payload from b.
172 // 172 //
173 // WriteToUnix can be made to time out and return an error with 173 // WriteToUnix can be made to time out and return an error with
174 // Timeout() == true after a fixed time limit; see SetDeadline and 174 // Timeout() == true after a fixed time limit; see SetDeadline and
175 // SetWriteDeadline. On packet-oriented connections, write timeouts 175 // SetWriteDeadline. On packet-oriented connections, write timeouts
176 // are rare. 176 // are rare.
177 func (c *UnixConn) WriteToUnix(b []byte, addr *UnixAddr) (n int, err error) { 177 func (c *UnixConn) WriteToUnix(b []byte, addr *UnixAddr) (n int, err error) {
178 if !c.ok() { 178 if !c.ok() {
179 return 0, syscall.EINVAL 179 return 0, syscall.EINVAL
180 } 180 }
181 if addr == nil {
182 return 0, &OpError{Op: "write", Net: c.fd.net, Addr: nil, Err: e rrMissingAddress}
183 }
181 if addr.Net != sotypeToNet(c.fd.sotype) { 184 if addr.Net != sotypeToNet(c.fd.sotype) {
182 return 0, syscall.EAFNOSUPPORT 185 return 0, syscall.EAFNOSUPPORT
183 } 186 }
184 sa := &syscall.SockaddrUnix{Name: addr.Name} 187 sa := &syscall.SockaddrUnix{Name: addr.Name}
185 return c.fd.WriteTo(b, sa) 188 return c.fd.WriteTo(b, sa)
186 } 189 }
187 190
188 // WriteTo implements the PacketConn WriteTo method. 191 // WriteTo implements the PacketConn WriteTo method.
189 func (c *UnixConn) WriteTo(b []byte, addr Addr) (n int, err error) { 192 func (c *UnixConn) WriteTo(b []byte, addr Addr) (n int, err error) {
190 if !c.ok() { 193 if !c.ok() {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 if !c.ok() { 232 if !c.ok() {
230 return syscall.EINVAL 233 return syscall.EINVAL
231 } 234 }
232 return c.fd.CloseWrite() 235 return c.fd.CloseWrite()
233 } 236 }
234 237
235 // DialUnix connects to the remote address raddr on the network net, 238 // DialUnix connects to the remote address raddr on the network net,
236 // which must be "unix", "unixgram" or "unixpacket". If laddr is not 239 // which must be "unix", "unixgram" or "unixpacket". If laddr is not
237 // nil, it is used as the local address for the connection. 240 // nil, it is used as the local address for the connection.
238 func DialUnix(net string, laddr, raddr *UnixAddr) (*UnixConn, error) { 241 func DialUnix(net string, laddr, raddr *UnixAddr) (*UnixConn, error) {
239 return dialUnix(net, laddr, raddr, noDeadline)
240 }
241
242 func dialUnix(net string, laddr, raddr *UnixAddr, deadline time.Time) (*UnixConn , error) {
243 switch net { 242 switch net {
244 case "unix", "unixgram", "unixpacket": 243 case "unix", "unixgram", "unixpacket":
245 default: 244 default:
246 return nil, &OpError{Op: "dial", Net: net, Addr: raddr, Err: Unk nownNetworkError(net)} 245 return nil, &OpError{Op: "dial", Net: net, Addr: raddr, Err: Unk nownNetworkError(net)}
247 } 246 }
247 return dialUnix(net, laddr, raddr, noDeadline)
248 }
249
250 func dialUnix(net string, laddr, raddr *UnixAddr, deadline time.Time) (*UnixConn , error) {
248 fd, err := unixSocket(net, laddr, raddr, "dial", deadline) 251 fd, err := unixSocket(net, laddr, raddr, "dial", deadline)
249 if err != nil { 252 if err != nil {
250 return nil, &OpError{Op: "dial", Net: net, Addr: raddr, Err: err } 253 return nil, &OpError{Op: "dial", Net: net, Addr: raddr, Err: err }
251 } 254 }
252 return newUnixConn(fd), nil 255 return newUnixConn(fd), nil
253 } 256 }
254 257
255 // UnixListener is a Unix domain socket listener. Clients should 258 // UnixListener is a Unix domain socket listener. Clients should
256 // typically use variables of type Listener instead of assuming Unix 259 // typically use variables of type Listener instead of assuming Unix
257 // domain sockets. 260 // domain sockets.
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 } 361 }
359 if laddr == nil { 362 if laddr == nil {
360 return nil, &OpError{Op: "listen", Net: net, Addr: nil, Err: err MissingAddress} 363 return nil, &OpError{Op: "listen", Net: net, Addr: nil, Err: err MissingAddress}
361 } 364 }
362 fd, err := unixSocket(net, laddr, nil, "listen", noDeadline) 365 fd, err := unixSocket(net, laddr, nil, "listen", noDeadline)
363 if err != nil { 366 if err != nil {
364 return nil, &OpError{Op: "listen", Net: net, Addr: laddr, Err: e rr} 367 return nil, &OpError{Op: "listen", Net: net, Addr: laddr, Err: e rr}
365 } 368 }
366 return newUnixConn(fd), nil 369 return newUnixConn(fd), nil
367 } 370 }
LEFTRIGHT

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