| 882 | } |
| 883 | |
| 884 | static 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 | |
| 894 | static int rtpengine_set_store(modparam_t type, void * val){ |