| 209 | } |
| 210 | |
| 211 | static void PrintSupportedProtocols(std::ostream& os, void*) { |
| 212 | std::vector<Protocol> protocols; |
| 213 | ListProtocols(&protocols); |
| 214 | for (size_t i = 0; i < protocols.size(); ++i) { |
| 215 | if (i != 0) { |
| 216 | os << ' '; |
| 217 | } |
| 218 | os << (protocols[i].name ? protocols[i].name : "(null)"); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | static void PrintSupportedCompressions(std::ostream& os, void*) { |
| 223 | std::vector<CompressHandler> compressors; |
nothing calls this directly
no test coverage detected