Changed CSeq data type in dialog to 32bit (instead of 31bit)

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1460 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-09-30 11:02:37 +00:00
parent 76c18818c9
commit df65719ddc
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ typedef struct pjsip_dlg_party
pj_uint32_t tag_hval; /**< Hashed value of the tag. */
pjsip_contact_hdr *contact; /**< Contact header. */
pj_int32_t first_cseq;/**< First CSeq seen. */
pj_int32_t cseq; /**< Next sequence number. */
pj_uint32_t cseq; /**< Next sequence number. */
} pjsip_dlg_party;