Asterisk - The Open Source Telephony Project
18.5.0
|
A supplement to SIP message processing. More...
#include <res_pjsip.h>
Data Fields | |
int(* | incoming_request )(struct ast_sip_endpoint *endpoint, struct pjsip_rx_data *rdata) |
Called on incoming SIP request This method can indicate a failure in processing in its return. If there is a failure, it is required that this method sends a response to the request. This method is always called from a SIP servant thread. More... | |
void(* | incoming_response )(struct ast_sip_endpoint *endpoint, struct pjsip_rx_data *rdata) |
Called on an incoming SIP response This method is always called from a SIP servant thread. More... | |
const char * | method |
struct { | |
struct ast_sip_supplement * next | |
} | next |
void(* | outgoing_request )(struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP request This method is always called from a SIP servant thread. More... | |
void(* | outgoing_response )(struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP response This method is always called from a SIP servant thread. More... | |
enum ast_sip_supplement_priority | priority |
A supplement to SIP message processing.
These can be registered by any module in order to add processing to incoming and outgoing SIP out of dialog requests and responses
Definition at line 2888 of file res_pjsip.h.
int(* incoming_request) (struct ast_sip_endpoint *endpoint, struct pjsip_rx_data *rdata) |
Called on incoming SIP request This method can indicate a failure in processing in its return. If there is a failure, it is required that this method sends a response to the request. This method is always called from a SIP servant thread.
Definition at line 2910 of file res_pjsip.h.
Referenced by supplement_on_rx_request().
void(* incoming_response) (struct ast_sip_endpoint *endpoint, struct pjsip_rx_data *rdata) |
Called on an incoming SIP response This method is always called from a SIP servant thread.
Definition at line 2926 of file res_pjsip.h.
Referenced by send_request_cb().
const char* method |
Method on which to call the callbacks. If NULL, call on all methods
Definition at line 2890 of file res_pjsip.h.
Referenced by ast_sip_send_out_of_dialog_request(), send_request_cb(), supplement_on_rx_request(), and supplement_outgoing_response().
struct { ... } next |
Next item in the list
struct ast_sip_supplement* next |
Definition at line 2938 of file res_pjsip.h.
Referenced by ast_sip_register_supplement(), ast_sip_unregister_supplement(), send_request_cb(), and supplement_on_rx_request().
void(* outgoing_request) (struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP request This method is always called from a SIP servant thread.
Definition at line 2931 of file res_pjsip.h.
Referenced by ast_sip_send_out_of_dialog_request().
void(* outgoing_response) (struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP response This method is always called from a SIP servant thread.
Definition at line 2936 of file res_pjsip.h.
Referenced by supplement_outgoing_response().
enum ast_sip_supplement_priority priority |
Priority for this supplement. Lower numbers are visited before higher numbers
Definition at line 2892 of file res_pjsip.h.
Referenced by ast_sip_register_supplement().