diff --git a/include/haproxy/queue-t.h b/include/haproxy/queue-t.h index 41022852b..4478d6c55 100644 --- a/include/haproxy/queue-t.h +++ b/include/haproxy/queue-t.h @@ -39,6 +39,12 @@ struct pendconn { struct eb32_node node; }; +struct queue { + struct eb_root head; /* queued pendconnds */ + unsigned int idx; /* current queuing index */ + unsigned int length; /* number of entries */ +}; + #endif /* _HAPROXY_QUEUE_T_H */ /*