Home | History | Annotate | Download | only in rpc

Lines Matching refs:network

234 // DialHTTP connects to an HTTP RPC server at the specified network address
236 func DialHTTP(network, address string) (*Client, error) {
237 return DialHTTPPath(network, address, DefaultRPCPath)
241 // at the specified network address and path.
242 func DialHTTPPath(network, address, path string) (*Client, error) {
244 conn, err := net.Dial(network, address)
262 Net: network + " " + address,
268 // Dial connects to an RPC server at the specified network address.
269 func Dial(network, address string) (*Client, error) {
270 conn, err := net.Dial(network, address)