/* note that the channels being dequeued here may not belong to this span
they may belong to just about any other span that one of our channels
happens to be bridged to */
- sngss7_chan_data_t *peer_info = peerchan->call_data;
- sngss7_chan_data_t *chan_info = peer_info->peer_data;
- ftdmchan = chan_info->ftdmchan;
-
- /*
- if there is any state changes at all, those will be done in the opposite channel
- to peerchan (where the original event was received), therefore we must lock ftdmchan,
- but do not need to lock peerchan as we only read its event queue, which is already
- locked when dequeueing */
- ftdm_channel_lock(ftdmchan);
-
- /* clean out all pending stack events in the peer channel */
- while ((sngss7_event = ftdm_queue_dequeue(peer_info->event_queue))) {
- ftdm_sangoma_ss7_process_peer_stack_event(ftdmchan, sngss7_event);
- ftdm_safe_free(sngss7_event);
- }
+ sngss7_chan_data_t *peer_info;
+ sngss7_chan_data_t *chan_info;
+
+ peer_info = peerchan->call_data;
+ if (peer_info) {
+ chan_info = peer_info->peer_data;
+ if (chan_info) {
+ ftdmchan = chan_info->ftdmchan;
+ if (ftdmchan) {
+
+ /*
+ if there is any state changes at all, those will be done in the opposite channel
+ to peerchan (where the original event was received), therefore we must lock ftdmchan,
+ but do not need to lock peerchan as we only read its event queue, which is already
+ locked when dequeueing */
+ ftdm_channel_lock(ftdmchan);
+
+ /* clean out all pending stack events in the peer channel */
+ while ((sngss7_event = ftdm_queue_dequeue(peer_info->event_queue))) {
+ ftdm_sangoma_ss7_process_peer_stack_event(ftdmchan, sngss7_event);
+ ftdm_safe_free(sngss7_event);
+ }
- ftdm_channel_unlock(ftdmchan);
+ ftdm_channel_unlock(ftdmchan);
+ }
+ }
+ }
}
/* clean out all pending stack events */
*/
if (ftdm_test_flag(ftdmchan, FTDM_CHANNEL_OUTBOUND)) {
sngss7_chan_data_t *peer_info = sngss7_info->peer_data;
- sngss7_info->peer_data = NULL;
if (peer_info) {
- peer_info->peer_data = NULL;
+ sngss7_info->peer_data = NULL;
+ if (peer_info) {
+ peer_info->peer_data = NULL;
+ }
}
}
var, peer_span->signal_type);
} else {
peer_info = peer_chan->call_data;
- SS7_INFO_CHAN(ftdmchan,"[CIC:%d]Starting native bridge with peer CIC %d\n",
- sngss7_info->circuit->cic, peer_info->circuit->cic);
-
- /* make each one of us aware of the native bridge */
- peer_info->peer_data = sngss7_info;
- sngss7_info->peer_data = peer_info;
-
- /* flush our own queue */
- sngss7_flush_queue(sngss7_info->event_queue);
-
- /* Go to up until release comes, note that state processing is done different and much simpler when there is a peer,
- We can't go to UP state right away yet though, so do not set the state to UP here, wait until the end of this function
- because moving from one state to another causes the ftdmchan->usrmsg structure to be wiped
- and we still need those variables for further IAM processing */
- native_going_up = FTDM_TRUE;
+ if (peer_info) {
+ SS7_INFO_CHAN(ftdmchan,"[CIC:%d]Starting native bridge with peer CIC %d\n",
+ sngss7_info->circuit->cic, peer_info->circuit->cic);
+
+ /* make each one of us aware of the native bridge */
+ peer_info->peer_data = sngss7_info;
+ sngss7_info->peer_data = peer_info;
+
+ /* flush our own queue */
+ sngss7_flush_queue(sngss7_info->event_queue);
+
+ /* Go to up until release comes, note that state processing is done different and much simpler when there is a peer,
+ We can't go to UP state right away yet though, so do not set the state to UP here, wait until the end of this function
+ because moving from one state to another causes the ftdmchan->usrmsg structure to be wiped
+ and we still need those variables for further IAM processing */
+ native_going_up = FTDM_TRUE;
+ }
}
}
}