summaryrefslogtreecommitdiff
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2018-04-27 10:06:30 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2018-04-27 10:06:30 -0500
commit9c430569d4ccfb035970554641eacde88fc0c295 (patch)
tree00204a3a02b9917963e1eb3ff13c67582e9bd776 /include/asterisk/frame.h
parent2cef65dc777a24da6999c6bed21f896e8ab79507 (diff)
parent4fb7967c7327fd73a93c587f3eca0564201be049 (diff)
Merge "bridge_softmix: Forward TEXT frames"
Diffstat (limited to 'include/asterisk/frame.h')
-rw-r--r--include/asterisk/frame.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index c3c0f8817..542407ecc 100644
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -48,6 +48,7 @@ extern "C" {
* \arg \b DTMF: A DTMF digit, subclass is the digit
* \arg \b IMAGE: Image transport, mostly used in IAX
* \arg \b TEXT: Text messages and character by character (real time text)
+ * \arg \b TEXT_DATA: Text messages in an ast_msg_data structure
* \arg \b HTML: URL's and web pages
* \arg \b MODEM: Modulated data encodings, such as T.38 and V.150
* \arg \b IAX: Private frame type for the IAX protocol
@@ -129,6 +130,8 @@ enum ast_frame_type {
AST_FRAME_BRIDGE_ACTION_SYNC,
/*! RTCP feedback (the subclass will contain the payload type) */
AST_FRAME_RTCP,
+ /*! Text message in an ast_msg_data structure */
+ AST_FRAME_TEXT_DATA,
};
#define AST_FRAME_DTMF AST_FRAME_DTMF_END