Asterisk - The Open Source Telephony Project
18.5.0
|
A supplement to SIP message processing. More...
#include <res_pjsip_session.h>
Data Fields | |
int(* | incoming_request )(struct ast_sip_session *session, 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_session *session, 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 ast_module * | module |
struct { | |
struct ast_sip_session_supplement * next | |
} | next |
void(* | outgoing_request )(struct ast_sip_session *session, 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_session *session, 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 |
enum ast_sip_session_response_priority | response_priority |
void(* | session_begin )(struct ast_sip_session *session) |
Notification that the session has begun This method will always be called from a SIP servant thread. More... | |
void(* | session_destroy )(struct ast_sip_session *session) |
Notification that the session is being destroyed. More... | |
void(* | session_end )(struct ast_sip_session *session) |
Notification that the session has ended. More... | |
A supplement to SIP message processing.
These can be registered by any module in order to add processing to incoming and outgoing SIP requests and responses
Definition at line 286 of file res_pjsip_session.h.
int(* incoming_request) (struct ast_sip_session *session, 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 327 of file res_pjsip_session.h.
Referenced by handle_incoming_request().
void(* incoming_response) (struct ast_sip_session *session, struct pjsip_rx_data *rdata) |
Called on an incoming SIP response This method is always called from a SIP servant thread.
Definition at line 343 of file res_pjsip_session.h.
Referenced by handle_incoming_response().
const char* method |
Method on which to call the callbacks. If NULL, call on all methods
Definition at line 290 of file res_pjsip_session.h.
Referenced by handle_incoming_request(), handle_incoming_response(), handle_outgoing_request(), handle_outgoing_response(), and has_supplement().
struct ast_module* module |
Reference module info
Definition at line 288 of file res_pjsip_session.h.
Referenced by ast_sip_session_add_supplements(), ast_sip_session_register_supplement_with_module(), and ast_sip_session_remove_supplements().
struct ast_sip_session_supplement* next |
Definition at line 355 of file res_pjsip_session.h.
Referenced by ast_sip_session_add_supplements(), ast_sip_session_register_supplement_with_module(), ast_sip_session_remove_supplements(), ast_sip_session_unregister_supplement(), handle_session_begin(), handle_session_destroy(), and handle_session_end().
struct { ... } next |
Next item in the list
void(* outgoing_request) (struct ast_sip_session *session, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP request This method is always called from a SIP servant thread.
Definition at line 348 of file res_pjsip_session.h.
Referenced by handle_outgoing_request().
void(* outgoing_response) (struct ast_sip_session *session, struct pjsip_tx_data *tdata) |
Called on an outgoing SIP response This method is always called from a SIP servant thread.
Definition at line 353 of file res_pjsip_session.h.
Referenced by handle_outgoing_response().
enum ast_sip_supplement_priority priority |
Priority for this supplement. Lower numbers are visited before higher numbers
Definition at line 292 of file res_pjsip_session.h.
Referenced by ast_sip_session_register_supplement_with_module().
enum ast_sip_session_response_priority response_priority |
Determines when the supplement is processed when handling a response. Defaults to AST_SIP_SESSION_BEFORE_MEDIA
Definition at line 360 of file res_pjsip_session.h.
Referenced by ast_sip_session_register_supplement_with_module(), and handle_incoming_response().
void(* session_begin) (struct ast_sip_session *session) |
Notification that the session has begun This method will always be called from a SIP servant thread.
Definition at line 297 of file res_pjsip_session.h.
Referenced by handle_session_begin().
void(* session_destroy) (struct ast_sip_session *session) |
Notification that the session is being destroyed.
Definition at line 309 of file res_pjsip_session.h.
Referenced by handle_session_destroy().
void(* session_end) (struct ast_sip_session *session) |
Notification that the session has ended.
This method may or may not be called from a SIP servant thread. Do not make assumptions about being able to call PJSIP methods from within this method.
Definition at line 305 of file res_pjsip_session.h.
Referenced by handle_session_end().