| 207 | } |
| 208 | |
| 209 | void channel_hint_set_update(struct channel_hint_set *set, |
| 210 | const struct timeabs now) |
| 211 | { |
| 212 | struct channel_hint *hint; |
| 213 | struct channel_hint_map_iter iter; |
| 214 | for (hint = channel_hint_map_first(set->hints, &iter); |
| 215 | hint; |
| 216 | hint = channel_hint_map_next(set->hints, &iter)) |
| 217 | channel_hint_update(now, hint); |
| 218 | } |
| 219 | |
| 220 | size_t channel_hint_set_count(const struct channel_hint_set *set) |
| 221 | { |
no test coverage detected