| 70 | {} |
| 71 | |
| 72 | ChannelSSLOptions* ChannelOptions::mutable_ssl_options() { |
| 73 | if (!_ssl_options) { |
| 74 | _ssl_options.reset(new ChannelSSLOptions); |
| 75 | } |
| 76 | return _ssl_options.get(); |
| 77 | } |
| 78 | |
| 79 | static ChannelSignature ComputeChannelSignature(const ChannelOptions& opt) { |
| 80 | if (opt.auth == NULL && |
no test coverage detected