aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/comms/ipc.go
diff options
context:
space:
mode:
authorBas van Kervel <basvankervel@gmail.com>2015-06-25 19:18:10 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-25 19:18:10 +0800
commitffbe5656ff2cba43c813f46f743fde4d1ab2dd58 (patch)
treef6bf37bd5e76287cfc8f8fe3037cb03d9e224a99 /rpc/comms/ipc.go
parent6d92fdc0df12337c2ffb8e6d19c83653f1a00ff2 (diff)
downloaddexon-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.go1
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
}