GetMsgPackServerCodec returns msgpack server codec for connection.
(c io.ReadWriteCloser)
| 59 | |
| 60 | // GetMsgPackServerCodec returns msgpack server codec for connection. |
| 61 | func GetMsgPackServerCodec(c io.ReadWriteCloser) rpc.ServerCodec { |
| 62 | return codec.MsgpackSpecRpc.ServerCodec(c, msgPackHandle) |
| 63 | } |
| 64 | |
| 65 | // GetMsgPackClientCodec returns msgpack client codec for connection. |
| 66 | func GetMsgPackClientCodec(c io.ReadWriteCloser) rpc.ClientCodec { |
no outgoing calls