Custom Query (2195 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 2195)

Ticket Resolution Summary Owner Reporter
#1853 fixed Add callback for dropped data in SIP transport bennylp ming
Description

Provide a new callback pjsip_tp_on_rx_dropped_cb() which will be called whenever SIP transport drops data with the following information:

/**
 * Structure of dropped received data.
 */
typedef struct pjsip_tp_dropped_data
{
    /**
     * The transport receiving the data.
     */
    pjsip_transport *tp;

    /**
     * The data.
     */
    void	    *data;

    /**
     * The data length.
     * If the status field below indicates an invalid SIP message
     * (PJSIP_EINVALIDMSG) and application detects a SIP message
     * at position p, it can pass the data back to PJSIP to be processed
     * by setting the len to p. This can be useful for apps which
     * wishes to use the same transport for SIP signalling and non-SIP
     * purposes (such as SIP outbound using STUN message).
     */
    pj_size_t	     len;

    /**
     * The status or reason of drop. For example, a leading newlines (common
     * keep-alive packet) will be dropped with status PJ_EIGNORED, an invalid
     * SIP message will have status PJSIP_EINVALIDMSG, a SIP message overflow
     * will have status PJSIP_ERXOVERFLOW.
     */
    pj_status_t	     status;

} pjsip_tp_dropped_data;
#1951 fixed Add callback to configure SRTP setting and key in pjsua/pjsua2 bennylp ming
Description

Add callback on_create_media_transport_srtp()/onCreateMediaTransportSrtp() which allows app to modify the SRTP setting in order to specify the cryptos and keys which are going to be used.

#192 fixed Add callback to notify application about incoming SUBSCRIBE request, and add subscription state and termination reason in buddy info bennylp bennylp
Description

Implement callback when incoming SUBSCRIBE is received in pjsua, to allow application to authorize the SUBSCRIBE request. This is useful for example to request authorization from user, and to allow application to add new buddy from the request.

Note: See TracQuery for help on using queries.