| 140 | namespace traffic_dump |
| 141 | { |
| 142 | std::string |
| 143 | json_entry(std::string_view name, std::string_view value) |
| 144 | { |
| 145 | return std::string{"\""} + escape_json(name) + "\":\"" + escape_json(value) + "\""; |
| 146 | } |
| 147 | |
| 148 | std::string |
| 149 | json_entry(std::string_view name, char const *value, int64_t size) |
no test coverage detected