A server points to a single remote CFSSL instance.
| 24 | |
| 25 | // A server points to a single remote CFSSL instance. |
| 26 | type server struct { |
| 27 | URL string |
| 28 | TLSConfig *tls.Config |
| 29 | reqModifier func(*http.Request, []byte) |
| 30 | RequestTimeout time.Duration |
| 31 | proxy func(*http.Request) (*url.URL, error) |
| 32 | } |
| 33 | |
| 34 | // A Remote points to at least one (but possibly multiple) remote |
| 35 | // CFSSL instances. It must be able to perform a authenticated and |
nothing calls this directly
no outgoing calls
no test coverage detected