| OLD | NEW |
| 1 // Copyright 2015 The LUCI Authors. All rights reserved. | 1 // Copyright 2015 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package streamclient | 5 package streamclient |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 "errors" | 8 "errors" |
| 9 "fmt" | 9 "fmt" |
| 10 "io" | 10 "io" |
| 11 | 11 |
| 12 npipe "gopkg.in/natefinch/npipe.v2" | 12 npipe "gopkg.in/natefinch/npipe.v2" |
| 13 ) | 13 ) |
| 14 | 14 |
| 15 // Register POSIX-only protocols. | 15 // Register POSIX-only protocols. |
| 16 func init() { | 16 func init() { |
| 17 registerProtocol("net.pipe", newNamedPipeClient) | 17 registerProtocol("net.pipe", newNamedPipeClient) |
| 18 } | 18 } |
| 19 | 19 |
| 20 // newNamedPipeClient creates a new Client instance bound to a named pipe stream | 20 // newNamedPipeClient creates a new Client instance bound to a named pipe stream |
| 21 // server. | 21 // server. |
| 22 func newNamedPipeClient(path string) (Client, error) { | 22 func newNamedPipeClient(path string) (Client, error) { |
| 23 if path == "" { | 23 if path == "" { |
| 24 return nil, errors.New("streamclient: cannot have empty named pi
pe path") | 24 return nil, errors.New("streamclient: cannot have empty named pi
pe path") |
| 25 } | 25 } |
| 26 | 26 |
| 27 » return &clientImpl{func() (io.WriteCloser, error) { | 27 » return &clientImpl{ |
| 28 » » return npipe.Dial(fmt.Sprintf(`\\.\pipe\%s`, path)) | 28 » » factory: func() (io.WriteCloser, error) { |
| 29 » }}, nil | 29 » » » return npipe.Dial(fmt.Sprintf(`\\.\pipe\%s`, path)) |
| 30 » » }, |
| 31 » }, nil |
| 30 } | 32 } |
| OLD | NEW |