ProtocolSimpleStreams implements a SimpleStreams API client.
| 9 | |
| 10 | // ProtocolSimpleStreams implements a SimpleStreams API client. |
| 11 | type ProtocolSimpleStreams struct { |
| 12 | ssClient *simplestreams.SimpleStreams |
| 13 | |
| 14 | http *http.Client |
| 15 | httpHost string |
| 16 | httpUserAgent string |
| 17 | httpCertificate string |
| 18 | |
| 19 | tempPath string |
| 20 | } |
| 21 | |
| 22 | // Disconnect is a no-op for simplestreams. |
| 23 | func (r *ProtocolSimpleStreams) Disconnect() { |
nothing calls this directly
no outgoing calls
no test coverage detected