This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
TT#24097 Switch for loop to use the i variable
This makes it a more natural code pattern. Change-Id: I200df650625de63ec1a7cacb05c73ee8f0c40080
changes/22/16722/6
Guillem Jover
8 years ago
parent
747661ff0d
commit
04f57900fc
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tests/simulator-tcp.sh
+ 1
- 1
tests/simulator-tcp.sh
View File
@ -17,7 +17,7 @@ port() {
ids
=
""
ports
=
""
for
i in
$(
seq
1
1000
)
;
do
for
(
(
i
=
0
;
i <
1000
;
i++
)
)
;
do
callid
=
`
uuid
`
test
-z
"
$callid
"
&&
exit
1
src
=
`
ip
`
:
`
port
`
Write
Preview
Loading…
Cancel
Save