Index: channels/chan_sip.c =================================================================== --- channels/chan_sip.c (revision 395087) +++ channels/chan_sip.c (working copy) @@ -18766,6 +18766,14 @@ char from_name[50]; char stripped[SIPBUFSIZE]; + if (strncmp(content_type, "asn1/aoc", strlen("asn1/aoc"))) { + transmit_response(p, "202 Accepted", req); /* Fake reply */ + if (!p->owner) { /* Would be good if we would actually handle the message */ + sip_scheddestroy(p, DEFAULT_TRANS_TIMEOUT); /* But at least the calls won't get dropped this way */ + } + return; + } + if (strncmp(content_type, "text/plain", strlen("text/plain"))) { /* No text/plain attachment */ transmit_response(p, "415 Unsupported Media Type", req); /* Good enough, or? */ if (!p->owner) {