summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2014-01-02 01:25:22 +0000
committerLiong Sauw Ming <ming@teluu.com>2014-01-02 01:25:22 +0000
commitf00de059ddcdc4252b313b4194bc9fdd4b053c38 (patch)
tree84c298003a7b7ef703fba1be75b5a0bc22a9e647
parente3fb1d3a94660e8fcfd5174060143cc79a3a0c1f (diff)
Re #1630 (misc): Fixed documentation of pjsip_generic_int_hdr
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4700 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjsip/include/pjsip/sip_msg.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/pjsip/include/pjsip/sip_msg.h b/pjsip/include/pjsip/sip_msg.h
index 40fae8bc..c8cb771f 100644
--- a/pjsip/include/pjsip/sip_msg.h
+++ b/pjsip/include/pjsip/sip_msg.h
@@ -1061,12 +1061,14 @@ PJ_DECL(void) pjsip_generic_string_hdr_init2(pjsip_generic_string_hdr *h,
/* **************************************************************************/
/**
- * Generic SIP header, which contains hname and a string hvalue.
+ * Generic SIP header, which contains hname and an integer ivalue.
*/
typedef struct pjsip_generic_int_hdr
{
- PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr); /**< Standard header field. */
- pj_int32_t ivalue; /**< ivalue */
+ /** Standard header field. */
+ PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr);
+ /** ivalue */
+ pj_int32_t ivalue;
} pjsip_generic_int_hdr;