| 13 | ) |
| 14 | |
| 15 | type WshRpcProxy struct { |
| 16 | Lock *sync.Mutex |
| 17 | RpcContext *wshrpc.RpcContext |
| 18 | ToRemoteCh chan []byte |
| 19 | FromRemoteCh chan baseds.RpcInputChType |
| 20 | PeerInfo string |
| 21 | } |
| 22 | |
| 23 | func MakeRpcProxy(peerInfo string) *WshRpcProxy { |
| 24 | return MakeRpcProxyWithSize(peerInfo, DefaultInputChSize, DefaultOutputChSize) |
nothing calls this directly
no outgoing calls
no test coverage detected