(config *clientConfig)
| 396 | } |
| 397 | |
| 398 | func (o *clientOptionsOption) applyToClient(config *clientConfig) { |
| 399 | for _, option := range o.options { |
| 400 | option.applyToClient(config) |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | type codecOption struct { |
| 405 | Codec Codec |
nothing calls this directly
no test coverage detected