dect
/
asterisk
Archived
13
0
Fork 0

(closes issue #13786)

Reported by: tzafrir

Readding DAHDI_CHECK_HOOKSTATE define that was removed in r134260 which fixes not being able to make outgoing calls on some FXO adapters:
http://lists.digium.com/pipermail/asterisk-users/2008-November/thread.html#221553



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@160319 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2008-12-02 18:00:24 +00:00
parent 4641797ace
commit 60cb1eef09
1 changed files with 11 additions and 0 deletions

View File

@ -180,6 +180,13 @@ static struct ast_jb_conf global_jbconf;
*/
/* #define DAHDI_CHECK_HOOKSTATE */
/*! \note
* Define if you want to check the hook state for an FXO (FXS signalled) interface
* before dialing on it. Certain FXO interfaces always think they're out of
* service with this method however.
*/
/* #define DAHDI_CHECK_HOOKSTATE */
/*! \brief Typically, how many rings before we should send Caller*ID */
#define DEFAULT_CIDRINGS 1
@ -9097,7 +9104,11 @@ static inline int available(struct dahdi_pvt *p, int channelmatch, ast_group_t g
} else if (par.rxisoffhook) {
ast_debug(1, "Channel %d off hook, can't use\n", p->channel);
/* Not available when the other end is off hook */
#ifdef DAHDI_CHECK_HOOKSTATE
return 0;
#else
return 1;
#endif
}
}
return 1;