ListTLSFiles returns the list of TLS files present for each endpoint in the context.
(name string)
| 194 | // ListTLSFiles returns the list of TLS files present for each endpoint in the |
| 195 | // context. |
| 196 | func (s *ContextStore) ListTLSFiles(name string) (map[string]EndpointFiles, error) { |
| 197 | return s.tls.listContextData(name) |
| 198 | } |
| 199 | |
| 200 | // GetTLSData reads, and returns the content of the given fileName for an endpoint. |
| 201 | // It returns an errdefs.ErrNotFound if the file was not found. |
nothing calls this directly
no test coverage detected