You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for the great software! I have one question though, could not find the answer in the docs or code:
How can I pass arguments that are not listed in pysipp.command.sipp_spec, like -min_rtp_port, to SIPP executable?
The text was updated successfully, but these errors were encountered:
I am not very familiar with pysipp code, but I would imagine adding parameter like additional_arguments to Agent constructor. This would be a list of string (for flags) or tuple of strings (for key-value arguments). CMD renderer should be modified in that case to incorporate additional arguments.
Meanwhile I found a dirty hack to inject additional arguments to SIPp command: pysipp.client(..., media_port="6000' -cp '8888")
If you have ideas for how you'd like it exposed please do speak up.
The way to support more arguments easily could be by modifying the sipp_spec list in the commands module and adding support for all the arguments in the current version of SIPp. As for example in this PR: #82
Hi, thanks for the great software! I have one question though, could not find the answer in the docs or code:
How can I pass arguments that are not listed in
pysipp.command.sipp_spec
, like -min_rtp_port
, to SIPP executable?The text was updated successfully, but these errors were encountered: