MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / dequote

Function dequote

SIP/SIPUtility.cpp:312–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312string 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
322std::ostream& operator<<(std::ostream& os, const SipTimer&t)
323{

Callers 1

sipRemoteDisplaynameMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected