SIPp / sipp

The SIPp testing tool
https://sipp.readthedocs.io
Other
918 stars 380 forks source link

Don't always reset next rtp port to min port #635

Closed smititelu closed 8 months ago

smititelu commented 1 year ago

The side effect of this bug is that one can not open more than 100 RTP simultaneous ports to do a load test. This is because of this initial code:

    int max_tries = (min_rtp_port < (max_rtp_port - 2)) ? 100 : 1;
smititelu commented 1 year ago

Checks failed, not related to my commit.

smititelu commented 1 year ago

This fix is an alternative for this fix in the PR: #634

prayush-mangal commented 9 months ago

yes, your changes fixed the bug. thanks

smititelu commented 8 months ago

Rebased this one too. Thanks.