MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / str_eq

Function str_eq

modules/rtpengine/rtpengine.c:884–891  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

882}
883
884static inline int str_eq(const str *p, const char *q) {
885 int l = strlen(q);
886 if (p->len != l)
887 return 0;
888 if (memcmp(p->s, q, l))
889 return 0;
890 return 1;
891}
892
893
894static int rtpengine_set_store(modparam_t type, void * val){

Callers 1

parse_flagsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected