Fix incrementation of cseq

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@206 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
aymeric 2008-12-15 10:10:53 +00:00
parent a87b4425e2
commit a37f3c9f06

View file

@ -834,8 +834,8 @@ __rtp_session_sendm_with_ts (RtpSession * session, mblk_t *mp, uint32_t packet_t
rtp->timestamp=packet_ts;
if (session->snd.telephone_events_pt==rtp->paytype)
{
session->rtp.snd_seq++;
rtp->seq_number = session->rtp.snd_seq;
session->rtp.snd_seq++;
}
else
session->rtp.snd_seq=rtp->seq_number+1;