Ignore:
Timestamp:
Mar 21, 2017 7:19:43 AM (7 years ago)
Author:
nanang
Message:

Close #2003: Added API pjsip_multipart_get_raw() to get raw body of a multipart message body.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_multipart.h

    r3553 r5569  
    171171 
    172172/** 
     173 * Get the boundary string and the raw message body of the specified 
     174 * multipart message body. Note that raw message body will only be available 
     175 * if the multipart message body is generated by pjsip_multipart_parse(). 
     176 * 
     177 * @param mp            The multipart message body. 
     178 * @param boundary      Optional parameter to receive the boundary string. 
     179 * @param raw_data      Optional parameter to receive the raw message body. 
     180 * 
     181 * @return              PJ_SUCCESS on success. 
     182 */ 
     183PJ_DECL(pj_status_t) pjsip_multipart_get_raw(pjsip_msg_body *mp, 
     184                                             pj_str_t *boundary, 
     185                                             pj_str_t *raw_data); 
     186 
     187/** 
    173188 * @}  PJSIP_MULTIPART 
    174189 */ 
Note: See TracChangeset for help on using the changeset viewer.