()
| 348 | c.decoder = decoder |
| 349 | } |
| 350 | func (c *Client) GetLengthField() *ziface.LengthField { |
| 351 | if c.decoder != nil { |
| 352 | return c.decoder.GetLengthField() |
| 353 | } |
| 354 | return nil |
| 355 | } |
| 356 | |
| 357 | func (c *Client) GetErrChan() <-chan error { |
| 358 | return c.errChan |
nothing calls this directly
no test coverage detected