summaryrefslogtreecommitdiff
path: root/include/asterisk/res_pjsip_session.h
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2014-02-26 13:47:49 +0000
committerKinsey Moore <kmoore@digium.com>2014-02-26 13:47:49 +0000
commit801cb712546dee1136a7575e7ff955583ec4ae7c (patch)
treeeb215e9dc3c53a8f79b8cb39706b5e02b354f67c /include/asterisk/res_pjsip_session.h
parentc3123956cd2e17ba62a87bf93f53686510430b59 (diff)
PJSIP: Fix some bad spacing
........ Merged revisions 408943 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@408944 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/res_pjsip_session.h')
-rw-r--r--include/asterisk/res_pjsip_session.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/include/asterisk/res_pjsip_session.h b/include/asterisk/res_pjsip_session.h
index 0d79c6b3a..562895b52 100644
--- a/include/asterisk/res_pjsip_session.h
+++ b/include/asterisk/res_pjsip_session.h
@@ -147,31 +147,31 @@ typedef int (*ast_sip_session_sdp_creation_cb)(struct ast_sip_session *session,
* processing to incoming and outgoing SIP requests and responses
*/
struct ast_sip_session_supplement {
- /*! Method on which to call the callbacks. If NULL, call on all methods */
- const char *method;
+ /*! Method on which to call the callbacks. If NULL, call on all methods */
+ const char *method;
/*! Priority for this supplement. Lower numbers are visited before higher numbers */
enum ast_sip_supplement_priority priority;
- /*!
+ /*!
* \brief Notification that the session has begun
* This method will always be called from a SIP servant thread.
*/
- void (*session_begin)(struct ast_sip_session *session);
- /*!
+ void (*session_begin)(struct ast_sip_session *session);
+ /*!
* \brief 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.
*/
- void (*session_end)(struct ast_sip_session *session);
+ void (*session_end)(struct ast_sip_session *session);
/*!
* \brief Notification that the session is being destroyed
*/
void (*session_destroy)(struct ast_sip_session *session);
- /*!
- * \brief 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.
+ /*!
+ * \brief 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.
*
* \note
@@ -184,9 +184,9 @@ struct ast_sip_session_supplement {
*
* \note
* There is no guarantee that a channel will be present on the session when this is called.
- */
- int (*incoming_request)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
- /*!
+ */
+ int (*incoming_request)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
+ /*!
* \brief Called on an incoming SIP response
* This method is always called from a SIP servant thread.
*
@@ -201,17 +201,17 @@ struct ast_sip_session_supplement {
* \note
* There is no guarantee that a channel will be present on the session when this is called.
*/
- void (*incoming_response)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
- /*!
+ void (*incoming_response)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
+ /*!
* \brief Called on an outgoing SIP request
* This method is always called from a SIP servant thread.
*/
- void (*outgoing_request)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
- /*!
+ void (*outgoing_request)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
+ /*!
* \brief Called on an outgoing SIP response
* This method is always called from a SIP servant thread.
*/
- void (*outgoing_response)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
+ void (*outgoing_response)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
/*! Next item in the list */
AST_LIST_ENTRY(ast_sip_session_supplement) next;
};