Recent commit
4348fad1 (listeners: use dual-linked lists to chain listeners
with frontends) broke frontend lookup in stats sockets by using the wrong
iterator in the listeners.
sv->counters.sps_max = 0;
}
- list_for_each_entry(li, &px->conf.listeners, by_bind)
+ list_for_each_entry(li, &px->conf.listeners, by_fe)
if (li->counters) {
if (clrall)
memset(li->counters, 0, sizeof(*li->counters));
* its listeners. The blocked ones will be dequeued.
*/
px->maxconn = v;
- list_for_each_entry(l, &px->conf.listeners, by_bind) {
+ list_for_each_entry(l, &px->conf.listeners, by_fe) {
l->maxconn = v;
if (l->state == LI_FULL)
resume_listener(l);