24 lines
478 B
Go
24 lines
478 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
csc "git.loafle.net/commons_go/server/client"
|
||
|
"gopkg.in/natefinch/npipe.v2"
|
||
|
)
|
||
|
|
||
|
func newSocketBuilder(address string) csc.SocketBuilder {
|
||
|
sb := &SocketBuilders{}
|
||
|
sb.Network = "pipe"
|
||
|
sb.Address = address
|
||
|
|
||
|
return sb
|
||
|
}
|
||
|
|
||
|
func (sb *SocketBuilders) Dial(network, address string) (net.Conn, error) {
|
||
|
if 0 == sb.HandshakeTimeout {
|
||
|
return npipe.Dial(`\\.\pipe\` + address)
|
||
|
}
|
||
|
return npipe.DialTimeout(`\\.\pipe\`+address, sb.HandshakeTimeout)
|
||
|
}
|