| 691 | } |
| 692 | |
| 693 | enum 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 | |
| 703 | enum clusterer_send_ret cl_send_all_bridges(bin_packet_t *packet, int my_cluster) |
| 704 | { |
nothing calls this directly
no test coverage detected