| 104 | :NullTagHandler(WANT_PAIR), response(_response) {} |
| 105 | |
| 106 | void OnPair(std::string_view key, std::string_view value) noexcept override { |
| 107 | if (IsValidName(key) && IsValidValue(value)) |
| 108 | response.Fmt("{}: {}\n", key, value); |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 | CommandResult |
nothing calls this directly
no test coverage detected