mirror of
https://github.com/smallnest/rpcx.git
synced 2025-09-26 20:21:14 +08:00
13 lines
184 B
Go
13 lines
184 B
Go
// +build !kcp
|
|
|
|
package client
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func newDirectKCPConn(c *Client, network, address string) (net.Conn, error) {
|
|
return nil, errors.New("kcp unsupported")
|
|
}
|