mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
When a error in T.38 negotiation happens or its rejected on a channel the
state of the channel reverts to unknown this should be rejected. this is important for negotiating T.38 gateway see #13405 This patch adds a option T38_REJECTED that behaves as T38_DISABLED except it reports state rejected. Trivial Change to res_fax to honnor UNAVAILABLE and REJECTED states. (closes issue #18889) Reported by: irroot Tested by: irroot, darkbasic, mnicholson Review: https://reviewboard.asterisk.org/r/1115 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@319087 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -594,7 +594,8 @@ enum t38state {
|
||||
T38_DISABLED = 0, /*!< Not enabled */
|
||||
T38_LOCAL_REINVITE, /*!< Offered from local - REINVITE */
|
||||
T38_PEER_REINVITE, /*!< Offered from peer - REINVITE */
|
||||
T38_ENABLED /*!< Negotiated (enabled) */
|
||||
T38_ENABLED, /*!< Negotiated (enabled) */
|
||||
T38_REJECTED /*!< Refused */
|
||||
};
|
||||
|
||||
/*! \brief Parameters to know status of transfer */
|
||||
|
Reference in New Issue
Block a user