| 73 | } |
| 74 | |
| 75 | bool eventgroupinfo::is_multicast() const { |
| 76 | std::scoped_lock its_lock(address_mutex_); |
| 77 | return address_.is_multicast(); |
| 78 | } |
| 79 | |
| 80 | bool eventgroupinfo::is_sending_multicast() const { |
| 81 | return (is_multicast() && threshold_ != 0 && get_unreliable_target_count() >= threshold_); |
no outgoing calls
no test coverage detected