| 1487 | } |
| 1488 | |
| 1489 | type TLSRoundTripperSettings struct { |
| 1490 | CA SecretReader |
| 1491 | Cert SecretReader |
| 1492 | Key SecretReader |
| 1493 | } |
| 1494 | |
| 1495 | func (t *TLSRoundTripperSettings) immutable() bool { |
| 1496 | return (t.CA == nil || t.CA.Immutable()) && (t.Cert == nil || t.Cert.Immutable()) && (t.Key == nil || t.Key.Immutable()) |
nothing calls this directly
no outgoing calls
no test coverage detected