| 1251 | } |
| 1252 | |
| 1253 | static int w_cache_remove(struct sip_msg *msg, str *id, str *attr) |
| 1254 | { |
| 1255 | if (!attr->s || !attr->len) { |
| 1256 | LM_ERR("attribute cannot be empty\n"); |
| 1257 | return E_UNSPEC; |
| 1258 | } |
| 1259 | |
| 1260 | return cachedb_remove(id, attr); |
| 1261 | } |
| 1262 | |
| 1263 | static int w_cache_fetch(struct sip_msg *msg, str *id, str *attr, |
| 1264 | pv_spec_t *res) |
nothing calls this directly
no test coverage detected