MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / cc_list_remove_call

Function cc_list_remove_call

modules/call_center/cc_data.c:756–768  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

754}
755
756void cc_list_remove_call(struct cc_data *data, struct cc_call *call)
757{
758 if(call->prev_list)
759 call->prev_list->next_list = call->next_list;
760 else
761 data->list.first = call->next_list;
762
763 if(call->next_list)
764 call->next_list->prev_list = call->prev_list;
765
766 data->list.calls_no--;
767 print_call_list(data);
768}
769
770struct cc_call* new_cc_call(struct cc_data *data, struct cc_flow *flow,
771 str *dn, str *un, str *param)

Callers 1

free_cc_callFunction · 0.85

Calls 1

print_call_listFunction · 0.85

Tested by

no test coverage detected