diff options
author | Bas van Kervel <basvankervel@gmail.com> | 2015-06-25 19:18:10 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-25 19:18:10 +0800 |
commit | ffbe5656ff2cba43c813f46f743fde4d1ab2dd58 (patch) | |
tree | f6bf37bd5e76287cfc8f8fe3037cb03d9e224a99 /rpc/comms/ipc.go | |
parent | 6d92fdc0df12337c2ffb8e6d19c83653f1a00ff2 (diff) | |
download | dexon-ffbe5656ff2cba43c813f46f743fde4d1ab2dd58.tar.gz dexon-ffbe5656ff2cba43c813f46f743fde4d1ab2dd58.tar.zst dexon-ffbe5656ff2cba43c813f46f743fde4d1ab2dd58.zip |
support for large requests/responses
Diffstat (limited to 'rpc/comms/ipc.go')
-rw-r--r-- | rpc/comms/ipc.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpc/comms/ipc.go b/rpc/comms/ipc.go index 068a1288f..3cfcbf3cf 100644 --- a/rpc/comms/ipc.go +++ b/rpc/comms/ipc.go @@ -16,6 +16,7 @@ type IpcConfig struct { type ipcClient struct { endpoint string + c net.Conn codec codec.Codec coder codec.ApiCoder } |