From 5d25b1517e399e7ff4f69fa04ad3a62ac255c0c9 Mon Sep 17 00:00:00 2001 From: djfiander Date: Thu, 4 May 2006 01:24:09 +0000 Subject: [PATCH] Sequence numbers are a single digit, so when it hits 10, wrap around to 0. --- t/SIPtest.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/t/SIPtest.pm b/t/SIPtest.pm index 61c142e..de7e040 100644 --- 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 } } -- 2.11.0