| 198 | } |
| 199 | |
| 200 | static int w_mq_fetch(struct sip_msg *msg, str *mq) |
| 201 | { |
| 202 | int ret; |
| 203 | |
| 204 | ret = mq_head_fetch(mq); |
| 205 | if(ret < 0) |
| 206 | return ret; |
| 207 | return 1; |
| 208 | } |
| 209 | |
| 210 | static int w_mq_size(struct sip_msg *msg, str *mq_val) |
| 211 | { |
nothing calls this directly
no test coverage detected