| 997 | */ |
| 998 | |
| 999 | int check_transaction_quadruple( struct sip_msg* msg ) |
| 1000 | { |
| 1001 | if ( parse_headers(msg, HDR_FROM_F|HDR_TO_F|HDR_CALLID_F|HDR_CSEQ_F,0)!=-1 |
| 1002 | && msg->from && msg->to && msg->callid && msg->cseq ) { |
| 1003 | return 1; |
| 1004 | } else { |
| 1005 | ser_error=E_BAD_TUPEL; |
| 1006 | return 0; |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | |
| 1011 | /* |
no outgoing calls
no test coverage detected