From: Christopher Faulet Date: Thu, 23 Dec 2021 13:55:25 +0000 (+0100) Subject: CLEANUP: conn-stream: Don't export conn-stream pool X-Git-Tag: v2.6-dev2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a86f6399fd151a154e4794914d989b69028a34f;p=thirdparty%2Fhaproxy.git CLEANUP: conn-stream: Don't export conn-stream pool There is no reason to export the conn-stream pool. --- diff --git a/include/haproxy/conn_stream.h b/include/haproxy/conn_stream.h index a89104b17e..730a29bbd4 100644 --- a/include/haproxy/conn_stream.h +++ b/include/haproxy/conn_stream.h @@ -27,13 +27,10 @@ #include #include #include -#include struct stream; struct check; -extern struct pool_head *pool_head_connstream; - #define IS_HTX_CS(cs) (cs_conn(cs) && IS_HTX_CONN(cs_conn(cs))) struct conn_stream *cs_new(enum obj_type *endp, void *ctx, enum obj_type *app, void *data, const struct data_cb *data_cb);