From 5b210179eca4e8ed3790fd9ec2e0ca94d042283e Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Sun, 30 Sep 2007 16:40:57 +0000 Subject: Reverted back CSeq data type to signed 32bit integer git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1461 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip/include/pjsip/sip_dialog.h | 2 +- pjsip/include/pjsip/sip_msg.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pjsip/include') diff --git a/pjsip/include/pjsip/sip_dialog.h b/pjsip/include/pjsip/sip_dialog.h index 50c8f9d9..626ec08b 100644 --- a/pjsip/include/pjsip/sip_dialog.h +++ b/pjsip/include/pjsip/sip_dialog.h @@ -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; diff --git a/pjsip/include/pjsip/sip_msg.h b/pjsip/include/pjsip/sip_msg.h index 906c4a5f..34bd996e 100644 --- a/pjsip/include/pjsip/sip_msg.h +++ b/pjsip/include/pjsip/sip_msg.h @@ -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; -- cgit v1.2.3