summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-09-30 16:40:57 +0000
committerBenny Prijono <bennylp@teluu.com>2007-09-30 16:40:57 +0000
commit5b210179eca4e8ed3790fd9ec2e0ca94d042283e (patch)
tree7e84d090c434b55065b17a4bdfcf9ec262792860 /pjsip
parent4b89a0a3282395ef8a9555fafe5e6d1c35b29fea (diff)
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
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/include/pjsip/sip_dialog.h2
-rw-r--r--pjsip/include/pjsip/sip_msg.h2
2 files changed, 2 insertions, 2 deletions
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;