support for large requests/responses

This commit is contained in:
Bas van Kervel
2015-06-25 13:18:10 +02:00
parent 6d92fdc0df
commit ffbe5656ff
3 changed files with 33 additions and 18 deletions

View File

@ -18,7 +18,7 @@ func newIpcClient(cfg IpcConfig, codec codec.Codec) (*ipcClient, error) {
return nil, err
}
return &ipcClient{cfg.Endpoint, codec, codec.New(c)}, nil
return &ipcClient{cfg.Endpoint, c, codec, codec.New(c)}, nil
}
func (self *ipcClient) reconnect() error {