From c505473a18a9b20e58e38ed752d377a41ea5784b Mon Sep 17 00:00:00 2001 From: mnicholson Date: Fri, 25 Jun 2010 19:42:54 +0000 Subject: Implemement support for handling multiple documents when sending. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@272558 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/res_fax.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'include') 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 */ -- cgit v1.2.3