summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2013-07-02 18:28:16 +0000
committerMark Michelson <mmichelson@digium.com>2013-07-02 18:28:16 +0000
commit69242ad317ab8ea765438c4ad7ef2cfe7eab2ba9 (patch)
tree3e64e3f26605f85755400ea0b4dda4e4fcd99d7d
parent05a16729cbdbc5f7e484d75900f01285a2e4dd76 (diff)
Remove unused blind transfer publication structure.
I ended up using a bridge blob, so this structure was unused. Keeping it in the header would just cause confusion. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393463 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--include/asterisk/stasis_bridging.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/asterisk/stasis_bridging.h b/include/asterisk/stasis_bridging.h
index f2e5acfd6..606884fb2 100644
--- a/include/asterisk/stasis_bridging.h
+++ b/include/asterisk/stasis_bridging.h
@@ -228,24 +228,6 @@ struct ast_bridge_channel_pair {
};
/*!
- * \brief Message representing blind transfer
- */
-struct ast_blind_transfer_message {
- AST_DECLARE_STRING_FIELDS(
- /*! The destination context for the blind transfer */
- AST_STRING_FIELD(context);
- /*! The destination extension for the blind transfer */
- AST_STRING_FIELD(exten);
- );
- /*! Result of the blind transfer */
- enum ast_transfer_result result;
- /*! If 0, was core DTMF transfer, otherwise occurred externally*/
- int is_external;
- /*! The transferer and its bridge before starting the transfer*/
- struct ast_bridge_channel_snapshot_pair transferer;
-};
-
-/*!
* \since 12
* \brief Message type for \ref ast_blind_transfer_message.
*