Reverted back CSeq data type to signed 32bit integer

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1461 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-09-30 16:40:57 +00:00
parent df65719ddc
commit 22ee695ae2
2 changed files with 2 additions and 2 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_uint32_t cseq; /**< Next sequence number. */
pj_int32_t cseq; /**< Next sequence number. */
} pjsip_dlg_party;

View File

@ -1223,7 +1223,7 @@ PJ_DECL(pjsip_clen_hdr*) pjsip_clen_hdr_init( pj_pool_t *pool,
typedef struct pjsip_cseq_hdr
{
PJSIP_DECL_HDR_MEMBER(struct pjsip_cseq_hdr);
int cseq; /**< CSeq number. */
pj_int32_t cseq; /**< CSeq number. */
pjsip_method method; /**< CSeq method. */
} pjsip_cseq_hdr;