search for: __dahdi_hooksig_pvt

Displaying 1 result from an estimated 1 matches for "__dahdi_hooksig_pvt".

2013 Mar 06
2
Change RX Signalling Bits in Dahdi drivers
...good understanding of this function? I would appreciate any help you can provide. case DAHDI_SIG_FXSLS: if (!(cursig & DAHDI_BBIT)) { /*Dennis RINGING */ /*<----- I think this is checking if the state is different from a set value? needs clarification*/ /* Check for ringing first */ __dahdi_hooksig_pvt(chan, DAHDI_RXSIG_RING); break; } if ((chan->sig != DAHDI_SIG_FXSLS) && (cursig & DAHDI_ABIT)) { /*<------ Why is it checking DAHDI_SIG_FXSLS? do I need to modify this to be 1111 also?*/ /* if went on hook */ __dahdi_hooksig_pvt(chan, DAHDI_RXSIG_ONHOOK); /*<----------I t...