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

Method paramFind

SIP/SIPParse.cpp:139–145  ·  view source on GitHub ↗

This can not distinguish between a missing param and one with an empty value.

Source from the content-addressed store, hash-verified

137
138// This can not distinguish between a missing param and one with an empty value.
139string SipParamList::paramFind(const char*name)
140{
141 for (SipParamList::iterator it = this->begin(); it != this->end(); it++) {
142 if (strceql(it->mName.c_str(),name)) { return it->mValue; }
143 }
144 return string("");
145}
146
147
148struct SipParseLine {

Callers 5

handleSMSResponseMethod · 0.45
sendAuthOKMessageMethod · 0.45
TUWriteHighSideVMethod · 0.45
newSipDialogHandoverMethod · 0.45
smGetRand401Method · 0.45

Calls 3

strceqlFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected