| 310 | } |
| 311 | |
| 312 | string dequote(const string in) |
| 313 | { |
| 314 | if (in[0] != '"') return in; |
| 315 | if (in.size() < 2 || in[in.size() - 1] != '"') { |
| 316 | LOG(ERR) << "Invalid quoted string:"<<in; |
| 317 | return in; |
| 318 | } |
| 319 | return in.substr(1,in.size()-2); |
| 320 | } |
| 321 | |
| 322 | std::ostream& operator<<(std::ostream& os, const SipTimer&t) |
| 323 | { |
no test coverage detected