-
Notifications
You must be signed in to change notification settings - Fork 394
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
RTPStream/PCAP: Support variables for filename #521
Conversation
Please review carefully. I probably missed something. Works for me™. |
ping |
ping? |
I'm pretty sure this breaks the original usage. Seeing the -2 to strip CRLFs which should not be in there. |
Why shouldn't it be there? I copied it from https://github.com/SIPp/sipp/blob/master/src/call.cpp#L5844 and many more similar usages. And why do you expect it to break the normal usage? |
Allow using [fieldX] and all types of variables on playback.
b489dcd
to
cc4d64a
Compare
Rebased |
Urgh. I stand corrected.
Ok, I guess then it works. I thought it was actually outputting lines from a CSV and trimming 2 characters... silly me. (Additionally I wonder if all those static char's aren't causing threading issues. But that's irrelevant for this case.) |
Apparently that was already altered in 29e648e. Nice stuff... 🙄 |
Since #521, prepare_pkts may be called on every call, not just on startup. This means that the log it prints to stderr is very visible and may cause performance problems. This commit removes it.
Since #521, prepare_pkts may be called on every call, not just on startup. This means that the log it prints to stderr is very visible and may cause performance problems. This commit removes it.
Allow using
[fieldX]
and all types of variables on playback.