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

Add a log when sipp scenario ends due to rtp or echo errors #600

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add comment when rtp or echo errors
  • Loading branch information
smititelu committed Dec 8, 2022
commit 2946aaba52f15a878f306cae0233ff6a416277be
1 change: 1 addition & 0 deletions src/sipp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,7 @@ void sipp_exit(int rc, int rtp_errors, int echo_errors)
// then everything is OK!
if ((rtp_errors > 0) || (echo_errors > 0))
{
WARNING("GOT %d rtp_errors and %d echo_errors", rtp_errors, echo_errors);
exit(EXIT_RTPCHECK_FAILED);
}
else
Expand Down