()
| 949 | } |
| 950 | |
| 951 | func (c *TLSConfig) usingClientCert() bool { |
| 952 | return len(c.Cert) > 0 || len(c.CertFile) > 0 |
| 953 | } |
| 954 | |
| 955 | func (c *TLSConfig) usingClientKey() bool { |
| 956 | return len(c.Key) > 0 || len(c.KeyFile) > 0 |
no outgoing calls
no test coverage detected