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

Function strceql

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

Source from the content-addressed store, hash-verified

100bool strcaseeql(const char *a,const char *b) { return 0==strcasecmp((a),(b)); }
101bool strncaseeql(const char *a,const char *b, unsigned n) { return 0==strncasecmp((a),(b),(n)); }
102bool strceql(const string a, const string b) { return strcaseeql(a.c_str(),b.c_str()); }
103
104
105//static const char *reserved = ";/?:@&=+$,";

Callers 3

paramFindMethod · 0.85
parseAuthenticateFunction · 0.85
sipParseMethod · 0.85

Calls 1

strcaseeqlFunction · 0.85

Tested by

no test coverage detected