projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d14fac
)
Sequence numbers are a single digit, so when it hits 10, wrap
author
djfiander
<djfiander>
Thu, 4 May 2006 01:24:09 +0000
(
01:24
+0000)
committer
djfiander
<djfiander>
Thu, 4 May 2006 01:24:09 +0000
(
01:24
+0000)
around to 0.
t/SIPtest.pm
patch
|
blob
|
history
diff --git
a/t/SIPtest.pm
b/t/SIPtest.pm
index
61c142e
..
de7e040
100644
(file)
--- a/
t/SIPtest.pm
+++ b/
t/SIPtest.pm
@@
-174,6
+174,7
@@
sub run_sip_tests {
foreach my $test (@_) {
one_msg($sock, $test, $seqno++);
+ $seqno %= 10; # sequence number is one digit
}
}