You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need a way to plug into the RPC codec so that I can encode/decode (a frame) before msgpack decoding (and after encoding). This is to test encrypting and decrypting frames.
type Transform interface {
Encode([]byte) []byte
Decode([]byte) []byte
}
The text was updated successfully, but these errors were encountered:
I need a way to plug into the RPC codec so that I can encode/decode (a frame) before msgpack decoding (and after encoding). This is to test encrypting and decrypting frames.
The text was updated successfully, but these errors were encountered: