| 237 | } |
| 238 | |
| 239 | std::string |
| 240 | HeaderField::values(const char *join) |
| 241 | { |
| 242 | std::string ret; |
| 243 | for (header_field_value_iterator it = begin(); it != end(); ++it) { |
| 244 | if (ret.size()) { |
| 245 | ret.append(join); |
| 246 | } |
| 247 | ret.append(*it); |
| 248 | } |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | std::string |
| 253 | HeaderField::values(const std::string &join) |
no test coverage detected