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

Function cl_send_all

modules/clusterer/clusterer.c:693–701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

691}
692
693enum clusterer_send_ret cl_send_all(bin_packet_t *packet, int cluster_id)
694{
695 if (msg_add_trailer(packet, cluster_id, -1 /* dummy value */) < 0) {
696 LM_ERR("Failed to add trailer to module's message\n");
697 return CLUSTERER_SEND_ERR;
698 }
699
700 return clusterer_bcast_msg(packet, cluster_id, NODE_CMP_ANY, 1);
701}
702
703enum clusterer_send_ret cl_send_all_bridges(bin_packet_t *packet, int my_cluster)
704{

Callers

nothing calls this directly

Calls 2

msg_add_trailerFunction · 0.85
clusterer_bcast_msgFunction · 0.85

Tested by

no test coverage detected