I\'m using pjsua to create simple SIP UA. I need to insert custom body (SDP) in outgoing INVITE requests. As far as I know, pjsua does not support custom SDP, and I need to
You have different ways to modify request's SDP body:
You can build a custom request by using pjsip_endpt_create_request, and directly work with the pjsip_tx_data structure. In this case , you can use pjsip_msg_body_create (http://www.pjsip.org/pjsip/docs/html/group_PJSIP_MSG__BODY.htm) by passing type, subtype and your custom body as a pj_str_t pointer. The response of this function should be stored in pjsip_tx_data's field msg.body.
On the other hand, if you're using a pjsua_msg_data structure, and you don't mind handling multiple bodies, you can store the response from pjsip_msg_body_create into a
pjsip_multipart_part (specifically into the body field) and add it to multipart_parts field inside the pjsup_msg_data object.
You can create your own media transport by using the pjsua's on_create_media_transport callback. This is a bit more complex but, by far, more flexible. You will be able to define several transport related callbacks (send_rtp, send_rtcp, etc.) and, if I remember right, one of them is called on SDP body encoding, allowing you to modify it or set your own.
Hope this helps.