overflow_discovery/client/socket_builders_windows.go

22 lines
417 B
Go
Raw Normal View History

2017-11-30 10:16:55 +00:00
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(dialer *net.Dialer, network, address string) (net.Conn, error) {
return npipe.DialTimeout(`\\.\pipe\`+address, dialer.Timeout)
}