aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/res_fax.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asterisk/res_fax.h b/include/asterisk/res_fax.h
index 8e8cb3b92..a6b3a21c1 100644
--- a/include/asterisk/res_fax.h
+++ b/include/asterisk/res_fax.h
@@ -33,13 +33,15 @@
/*! \brief capabilities for res_fax to locate a fax technology module */
enum ast_fax_capabilities {
/*! SendFax is supported */
- AST_FAX_TECH_SEND = (1 << 0),
+ AST_FAX_TECH_SEND = (1 << 0),
/*! ReceiveFax is supported */
- AST_FAX_TECH_RECEIVE = (1 << 1),
+ AST_FAX_TECH_RECEIVE = (1 << 1),
/*! Audio FAX session supported */
- AST_FAX_TECH_AUDIO = (1 << 2),
+ AST_FAX_TECH_AUDIO = (1 << 2),
/*! T.38 FAX session supported */
- AST_FAX_TECH_T38 = (1 << 3),
+ AST_FAX_TECH_T38 = (1 << 3),
+ /*! sending mulitple documents supported */
+ AST_FAX_TECH_MULTI_DOC = (1 << 4),
};
/*! \brief fax modem capabilities */