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:
6ee1f1e
)
AZ field also needs to be in the output message.
user/jason@mvlc.org/this_is_getting_old
author
Jason Stephenson
<jstephenson@mvlc.org>
Thu, 30 Jun 2011 18:02:47 +0000
(14:02 -0400)
committer
Jason Stephenson
<jstephenson@mvlc.org>
Thu, 30 Jun 2011 18:02:47 +0000
(14:02 -0400)
Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Sip.pm
patch
|
blob
|
history
diff --git
a/Sip.pm
b/Sip.pm
index
37b3814
..
9dea1c1
100644
(file)
--- a/
Sip.pm
+++ b/
Sip.pm
@@
-230,7
+230,8
@@
sub write_msg {
if (defined($self->{seqno})) {
$msg .= 'AY' . $self->{seqno};
}
- $msg .= checksum($msg . 'AZ');
+ $msg .= 'AZ';
+ $msg .= checksum($msg);
}