Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

siptrace: add methods_blacklist_auto modparam #2374

Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/modules/siptrace/siptrace.c
Expand Up @@ -2038,7 +2038,7 @@ static int siptrace_blacklisted_method(siptrace_data_t *sto)
msg.buf = sto->body.s;
msg.len = sto->body.len;
if(parse_msg(msg.buf, msg.len, &msg) != 0) {
LM_ERR("parse_msg failed\n");
LM_DBG("parse_msg failed\n");
return -1;
}
}
Expand All @@ -2050,7 +2050,7 @@ static int siptrace_blacklisted_method(siptrace_data_t *sto)
}
} else {
if(parse_headers(&msg, HDR_CSEQ_F, 0) != 0 || msg.cseq == NULL) {
LM_ERR("cannot parse cseq header\n");
LM_DBG("cannot parse cseq header\n");
free_sip_msg(&msg);
return -1;
}
Expand Down