summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/channel.h3
-rw-r--r--include/asterisk/file.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 11fb1df38..57b7552c6 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -546,6 +546,9 @@ enum {
/*! Flag to show channels that this call is hangup due to the fact that the call
was indeed anwered, but in another channel */
AST_FLAG_ANSWERED_ELSEWHERE = (1 << 15),
+ /*! This flag indicates that on a masquerade, an active stream should not
+ * be carried over */
+ AST_FLAG_MASQ_NOSTREAM = (1 << 16),
};
/*! \brief ast_bridge_config flags */
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index 22a887c66..f94fa71c4 100644
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -133,6 +133,7 @@ struct ast_filestream {
int lastwriteformat;
int lasttimeout;
struct ast_channel *owner;
+ const char *orig_chan_name;
FILE *f;
struct ast_frame fr; /*!< frame produced by read, typically */
char *buf; /*!< buffer pointed to by ast_frame; */