| 156 | } |
| 157 | |
| 158 | static int determine_call_id (struct sip_msg *msg, str *source_string) { |
| 159 | source_string->s = msg->callid->body.s; |
| 160 | source_string->len = msg->callid->body.len; |
| 161 | first_token (source_string); |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static int determine_fromto_uri (struct to_body *fromto, str *source_string) { |
| 166 | if (fromto == NULL) { |
no test coverage detected