Hi,
I've applied the changes to the two files and taken some captures. I'm trying to find out if the 202 Accepted part is engaged or not, so far doesn't seem to show up in the pcaps.
However if I put dmq_handle_msg() it goes and send back a 404 User Not Found from the message.c file.
peer = find_peer(msg->parsed_uri.user);
if(!peer) {
LM_DBG("no peer found for %.*s\n", msg->parsed_uri.user.len,
msg->parsed_uri.user.s);
if(slb.freply(msg, 404, &dmq_404_rpl) < 0) {
LM_ERR("sending reply\n");
goto error;
}
return returnval;
}
Not crashing now atleast. I'm going to keep on trying script combinations and see how to get the 202 Accepted DMQ.
Thanks,
Sammy