IdentityTransportFactory will use the client TLSConfig provided by the given identity to configure a ClientTransport
| 101 | // IdentityTransportFactory will use the client TLSConfig provided by the given identity to configure |
| 102 | // a ClientTransport |
| 103 | type IdentityTransportFactory struct { |
| 104 | identity identity.Identity |
| 105 | } |
| 106 | |
| 107 | func (self *IdentityTransportFactory) New(config TransportConfig) (runtime.ClientTransport, error) { |
| 108 | ctrlUrl, err := url.Parse(config.GetHost()) |
nothing calls this directly
no outgoing calls
no test coverage detected