From 3fb6daeb551bf4fec13820a2d2f9df7faf287b9b Mon Sep 17 00:00:00 2001 From: Kevin Harwell Date: Wed, 29 Apr 2015 13:05:10 -0500 Subject: res_fax: allow 2400 transmission rate according to v.27ter standard A previous set of patches (see: ASTERISK-22790 & ASTERISK-23231) made it so a v.27 modem was not allowed to have a minimum transmission rate of 2400 bits per second. This reverts all or some of those patches since according to the v.27ter standard a rate of 2400 bits per second is also supported. One of the original patches also added 9600 bits per second support for v.27. This patch also removes that since v.27ter only supports 2400/4800 bits per second. Also, since Asterisk specifically supports v.27ter the enum was renamed to better reflect this. ASTERISK-24955 #close Reported by: Matt Jordan Change-Id: I4b9dfb6bf7eff08463ab47ee1a74224f27cae733 --- include/asterisk/res_fax.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/asterisk/res_fax.h') diff --git a/include/asterisk/res_fax.h b/include/asterisk/res_fax.h index 746518b95..2304da734 100644 --- a/include/asterisk/res_fax.h +++ b/include/asterisk/res_fax.h @@ -53,8 +53,8 @@ enum ast_fax_capabilities { enum ast_fax_modems { /*! V.17 */ AST_FAX_MODEM_V17 = (1 << 0), - /*! V.27 */ - AST_FAX_MODEM_V27 = (1 << 1), + /*! V.27ter */ + AST_FAX_MODEM_V27TER = (1 << 1), /*! V.29 */ AST_FAX_MODEM_V29 = (1 << 2), /*! V.34 */ -- cgit v1.2.3