REORG: stconn: rename conn_stream.{c,h} to stconn.{c,h}
There's no more reason for keepin the code and definitions in conn_stream, let's move all that to stconn. The alphabetical ordering of include files was adjusted.
This commit is contained in:
parent
5edca2f0e1
commit
cb086c6de1
2
Makefile
2
Makefile
@ -953,7 +953,7 @@ OBJS += src/mux_h2.o src/mux_fcgi.o src/http_ana.o src/mux_h1.o \
|
||||
src/base64.o src/uri_auth.o src/time.o src/ebsttree.o src/ebistree.o \
|
||||
src/dynbuf.o src/auth.o src/wdt.o src/pipe.o src/http_acl.o \
|
||||
src/hpack-huff.o src/hpack-enc.o src/dict.o src/init.o src/freq_ctr.o \
|
||||
src/ebtree.o src/hash.o src/dgram.o src/version.o src/conn_stream.o \
|
||||
src/ebtree.o src/hash.o src/dgram.o src/version.o src/stconn.o \
|
||||
src/ncbuf.o
|
||||
|
||||
ifneq ($(TRACE),)
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include <haproxy/backend.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/frontend.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/http.h>
|
||||
@ -34,6 +33,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#include <haproxy/channel-t.h>
|
||||
#include <haproxy/connection-t.h>
|
||||
#include <haproxy/conn_stream-t.h>
|
||||
#include <haproxy/stconn-t.h>
|
||||
#include <haproxy/http_ana-t.h>
|
||||
#include <haproxy/stream-t.h>
|
||||
#include <haproxy/task-t.h>
|
||||
|
@ -27,11 +27,11 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/applet-t.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/pool.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/task.h>
|
||||
|
||||
extern unsigned int nb_applets;
|
||||
|
@ -396,8 +396,8 @@ struct mux_ops {
|
||||
void (*shutr)(struct stconn *cs, enum co_shr_mode); /* shutr function */
|
||||
void (*shutw)(struct stconn *cs, enum co_shw_mode); /* shutw function */
|
||||
|
||||
int (*attach)(struct connection *conn, struct sedesc *, struct session *sess); /* attach a conn_stream to an outgoing connection */
|
||||
struct stconn *(*get_first_cs)(const struct connection *); /* retrieves any valid conn_stream from this connection */
|
||||
int (*attach)(struct connection *conn, struct sedesc *, struct session *sess); /* attach a stconn to an outgoing connection */
|
||||
struct stconn *(*get_first_cs)(const struct connection *); /* retrieves any valid stconn from this connection */
|
||||
void (*detach)(struct sedesc *); /* Detach an stconn from the stdesc from an outgoing connection, when the request is done */
|
||||
int (*show_fd)(struct buffer *, struct connection *); /* append some data about connection into chunk for "show fd"; returns non-zero if suspicious */
|
||||
int (*subscribe)(struct stconn *cs, int event_type, struct wait_event *es); /* Subscribe <es> to events, such as "being able to send" */
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/connection-t.h>
|
||||
#include <haproxy/conn_stream-t.h>
|
||||
#include <haproxy/stconn-t.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/listener-t.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include <haproxy/list-t.h>
|
||||
#include <haproxy/ncbuf-t.h>
|
||||
#include <haproxy/quic_stream-t.h>
|
||||
#include <haproxy/conn_stream-t.h>
|
||||
#include <haproxy/stconn-t.h>
|
||||
|
||||
/* Stream types */
|
||||
enum qcs_type {
|
||||
@ -112,7 +112,7 @@ struct qcs {
|
||||
uint64_t offset; /* absolute current base offset of ncbuf */
|
||||
uint64_t offset_max; /* maximum absolute offset received */
|
||||
struct ncbuf ncbuf; /* receive buffer - can handle out-of-order offset frames */
|
||||
struct buffer app_buf; /* receive buffer used by conn_stream layer */
|
||||
struct buffer app_buf; /* receive buffer used by stconn layer */
|
||||
uint64_t msd; /* current max-stream-data limit to enforce */
|
||||
uint64_t msd_init; /* initial max-stream-data */
|
||||
} rx;
|
||||
|
@ -28,9 +28,9 @@
|
||||
#include <haproxy/stream-t.h>
|
||||
#include <haproxy/task-t.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
|
||||
void sc_update_rx(struct stconn *cs);
|
||||
|
@ -1,10 +1,9 @@
|
||||
/*
|
||||
* include/haproxy/conn_stream-t.h
|
||||
* include/haproxy/stconn-t.h
|
||||
* This file describes the stream connector struct and associated constants.
|
||||
*
|
||||
* Copyright 2021 Christopher Faulet <cfaulet@haproxy.com>
|
||||
*
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation, version 2.1
|
||||
@ -20,8 +19,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef _HAPROXY_CONN_STREAM_T_H
|
||||
#define _HAPROXY_CONN_STREAM_T_H
|
||||
#ifndef _HAPROXY_STCONN_T_H
|
||||
#define _HAPROXY_STCONN_T_H
|
||||
|
||||
#include <haproxy/obj_type-t.h>
|
||||
#include <haproxy/connection-t.h>
|
||||
@ -140,7 +139,7 @@ enum sc_state_bit {
|
||||
struct stconn;
|
||||
|
||||
/* A Stream Endpoint Descriptor (sedesc) is the link between the stream
|
||||
* connector (ex. conn_stream) and the Stream Endpoint (mux or appctx).
|
||||
* connector (ex. stconn) and the Stream Endpoint (mux or appctx).
|
||||
* It always exists for either of them, and binds them together. It also
|
||||
* contains some shared information relative to the endpoint. It is created by
|
||||
* the first one which needs it and is shared by the other one, i.e. on the
|
||||
@ -195,4 +194,4 @@ struct stconn {
|
||||
};
|
||||
|
||||
|
||||
#endif /* _HAPROXY_CONN_STREAM_T_H */
|
||||
#endif /* _HAPROXY_STCONN_T_H */
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* include/haproxy/conn_stream.h
|
||||
* include/haproxy/stconn.h
|
||||
* This file contains stream connector function prototypes
|
||||
*
|
||||
* Copyright 2021 Christopher Faulet <cfaulet@haproxy.com>
|
||||
@ -19,13 +19,13 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef _HAPROXY_CONN_STREAM_H
|
||||
#define _HAPROXY_CONN_STREAM_H
|
||||
#ifndef _HAPROXY_STCONN_H
|
||||
#define _HAPROXY_STCONN_H
|
||||
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream-t.h>
|
||||
#include <haproxy/obj_type.h>
|
||||
#include <haproxy/stconn-t.h>
|
||||
|
||||
struct buffer;
|
||||
struct session;
|
||||
@ -53,7 +53,7 @@ struct appctx *sc_applet_create(struct stconn *cs, struct applet *app);
|
||||
|
||||
/* The se_fl_*() set of functions manipulate the stream endpoint flags from
|
||||
* the stream endpoint itself. The sc_ep_*() set of functions manipulate the
|
||||
* stream endpoint flags from the the stream connector (ex. conn_stream).
|
||||
* stream endpoint flags from the the stream connector (ex. stconn).
|
||||
* _zero() clears all flags, _clr() clears a set of flags (&=~), _set() sets
|
||||
* a set of flags (|=), _test() tests the presence of a set of flags, _get()
|
||||
* retrieves the exact flags, _setall() replaces the flags with the new value.
|
||||
@ -398,4 +398,4 @@ static inline void se_need_more_data(struct sedesc *se)
|
||||
se_fl_set(se, SE_FL_WILL_CONSUME | SE_FL_WAIT_DATA);
|
||||
}
|
||||
|
||||
#endif /* _HAPROXY_CONN_STREAM_H */
|
||||
#endif /* _HAPROXY_STCONN_H */
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include <haproxy/api-t.h>
|
||||
#include <haproxy/channel-t.h>
|
||||
#include <haproxy/conn_stream-t.h>
|
||||
#include <haproxy/stconn-t.h>
|
||||
#include <haproxy/dynbuf-t.h>
|
||||
#include <haproxy/filters-t.h>
|
||||
#include <haproxy/obj_type-t.h>
|
||||
|
@ -24,13 +24,13 @@
|
||||
|
||||
#include <haproxy/action-t.h>
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/freq_ctr.h>
|
||||
#include <haproxy/obj_type.h>
|
||||
#include <haproxy/pool-t.h>
|
||||
#include <haproxy/queue.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stick_table.h>
|
||||
#include <haproxy/stream-t.h>
|
||||
#include <haproxy/task-t.h>
|
||||
|
@ -17,9 +17,9 @@
|
||||
#include <haproxy/clock.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/freq_ctr.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/xxhash.h>
|
||||
|
||||
|
@ -16,9 +16,9 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include <haproxy/backend.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/frontend.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/hash.h>
|
||||
@ -53,6 +52,7 @@
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/filters.h>
|
||||
#include <haproxy/hash.h>
|
||||
@ -33,6 +32,7 @@
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/shctx.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/compression.h>
|
||||
#include <haproxy/dns-t.h>
|
||||
#include <haproxy/errors.h>
|
||||
@ -58,6 +57,7 @@
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/sock.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/frontend.h>
|
||||
#include <haproxy/hash.h>
|
||||
@ -30,6 +29,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/xxhash.h>
|
||||
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/clock.h>
|
||||
#include <haproxy/debug.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -40,6 +39,7 @@
|
||||
#include <haproxy/log.h>
|
||||
#include <haproxy/net_helper.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/thread.h>
|
||||
#include <haproxy/time.h>
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dgram.h>
|
||||
#include <haproxy/dns.h>
|
||||
#include <haproxy/errors.h>
|
||||
@ -33,6 +32,7 @@
|
||||
#include <haproxy/log.h>
|
||||
#include <haproxy/ring.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include <haproxy/arg.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/filters.h>
|
||||
#include <haproxy/freq_ctr.h>
|
||||
#include <haproxy/frontend.h>
|
||||
@ -34,6 +33,7 @@
|
||||
#include <haproxy/signal.h>
|
||||
#include <haproxy/sink.h>
|
||||
#include <haproxy/spoe.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcp_rules.h>
|
||||
|
2
src/h3.c
2
src/h3.c
@ -18,7 +18,6 @@
|
||||
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/h3.h>
|
||||
#include <haproxy/http.h>
|
||||
@ -31,6 +30,7 @@
|
||||
#include <haproxy/qpack-dec.h>
|
||||
#include <haproxy/qpack-enc.h>
|
||||
#include <haproxy/quic_enc.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/xprt_quic.h>
|
||||
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/clock.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/filters.h>
|
||||
#include <haproxy/h1.h>
|
||||
#include <haproxy/hlua.h>
|
||||
@ -58,6 +57,7 @@
|
||||
#include <haproxy/ssl_ckch.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcp_rules.h>
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include <haproxy/capture-t.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/chunk.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/http.h>
|
||||
#include <haproxy/http_ana.h>
|
||||
@ -35,6 +34,7 @@
|
||||
#include <haproxy/regex.h>
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/uri_auth-t.h>
|
||||
#include <haproxy/uri_normalizer.h>
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/filters.h>
|
||||
#include <haproxy/http.h>
|
||||
@ -35,6 +34,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/server-t.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/trace.h>
|
||||
#include <haproxy/uri_auth-t.h>
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include <haproxy/ssl_ckch.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/istbuf.h>
|
||||
#include <haproxy/h1_htx.h>
|
||||
@ -35,6 +34,7 @@
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/ssl_sock-t.h>
|
||||
#include <haproxy/sock_inet.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
#include <string.h>
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/clock.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/frontend.h>
|
||||
#include <haproxy/global.h>
|
||||
@ -40,6 +39,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/sink.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/time.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
@ -17,13 +17,13 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/arg.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/map.h>
|
||||
#include <haproxy/pattern.h>
|
||||
#include <haproxy/regex.h>
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fcgi-app.h>
|
||||
@ -33,6 +32,7 @@
|
||||
#include <haproxy/regex.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/session-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/trace.h>
|
||||
#include <haproxy/version.h>
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/h1.h>
|
||||
#include <haproxy/h1_htx.h>
|
||||
@ -28,6 +27,7 @@
|
||||
#include <haproxy/proxy.h>
|
||||
#include <haproxy/session-t.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/trace.h>
|
||||
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/h2.h>
|
||||
#include <haproxy/hpack-dec.h>
|
||||
@ -28,6 +27,7 @@
|
||||
#include <haproxy/net_helper.h>
|
||||
#include <haproxy/session-t.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/trace.h>
|
||||
|
||||
|
@ -13,8 +13,8 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/pipe-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/trace.h>
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/htx.h>
|
||||
#include <haproxy/list.h>
|
||||
@ -12,6 +11,7 @@
|
||||
#include <haproxy/pool.h>
|
||||
#include <haproxy/quic_stream.h>
|
||||
#include <haproxy/ssl_sock-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/trace.h>
|
||||
#include <haproxy/xprt_quic.h>
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/global.h>
|
||||
@ -36,6 +35,7 @@
|
||||
#include <haproxy/proxy.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/signal.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/version.h>
|
||||
|
@ -18,12 +18,12 @@
|
||||
#include <haproxy/arg.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/htx.h>
|
||||
#include <haproxy/net_helper.h>
|
||||
#include <haproxy/pattern.h>
|
||||
#include <haproxy/payload.h>
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dict.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -40,6 +39,7 @@
|
||||
#include <haproxy/session-t.h>
|
||||
#include <haproxy/signal.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stick_table.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
|
@ -19,13 +19,13 @@
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/pool.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/thread.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <haproxy/capture-t.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
#include <haproxy/filters.h>
|
||||
@ -44,6 +43,7 @@
|
||||
#include <haproxy/server-t.h>
|
||||
#include <haproxy/signal.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcpcheck.h>
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dns.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -42,6 +41,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcp_rules.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -23,9 +23,9 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/ring.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/thread.h>
|
||||
|
||||
/* context used to dump the contents of a ring via "show events" or "show errors" */
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dict-t.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/global.h>
|
||||
@ -41,6 +40,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcpcheck.h>
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/log.h>
|
||||
@ -32,6 +31,7 @@
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/signal.h>
|
||||
#include <haproxy/sink.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/time.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
@ -30,12 +30,12 @@
|
||||
#include <haproxy/base64.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/ssl_ckch.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/ssl_utils.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
/* Uncommitted CKCH transaction */
|
||||
|
@ -23,12 +23,12 @@
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/ssl_ckch.h>
|
||||
#include <haproxy/ssl_crtlist.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
/* CLI context for "show ssl crt-list" or "dump ssl crt-list" */
|
||||
|
@ -25,12 +25,12 @@
|
||||
#include <haproxy/base64.h>
|
||||
#include <haproxy/buf-t.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/obj_type.h>
|
||||
#include <haproxy/openssl-compat.h>
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/ssl_utils.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/tools.h>
|
||||
#include <haproxy/vars.h>
|
||||
|
||||
|
@ -51,7 +51,6 @@
|
||||
#include <haproxy/chunk.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -73,6 +72,7 @@
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/ssl_utils.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream-t.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/clock.h>
|
||||
#include <haproxy/compression.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/debug.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -58,6 +57,7 @@
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/stats.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -13,12 +13,12 @@
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/http_ana.h>
|
||||
#include <haproxy/pipe.h>
|
||||
#include <haproxy/pool.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
|
||||
DECLARE_POOL(pool_head_connstream, "stconn", sizeof(struct stconn));
|
||||
DECLARE_POOL(pool_head_sedesc, "sedesc", sizeof(struct sedesc));
|
@ -23,7 +23,6 @@
|
||||
#include <haproxy/arg.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dict.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/global.h>
|
||||
@ -38,6 +37,7 @@
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stick_table.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/cli.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dict.h>
|
||||
#include <haproxy/dynbuf.h>
|
||||
#include <haproxy/fd.h>
|
||||
@ -52,6 +51,7 @@
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/session.h>
|
||||
#include <haproxy/stats-t.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stick_table.h>
|
||||
#include <haproxy/stream.h>
|
||||
#include <haproxy/task.h>
|
||||
|
@ -17,13 +17,13 @@
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/channel.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/list.h>
|
||||
#include <haproxy/log.h>
|
||||
#include <haproxy/proxy.h>
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/sc_strm.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/stick_table.h>
|
||||
#include <haproxy/stream-t.h>
|
||||
#include <haproxy/tcp_rules.h>
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include <haproxy/check.h>
|
||||
#include <haproxy/chunk.h>
|
||||
#include <haproxy/connection.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/errors.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/h1.h>
|
||||
@ -55,6 +54,7 @@
|
||||
#include <haproxy/sample.h>
|
||||
#include <haproxy/server.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tcpcheck.h>
|
||||
#include <haproxy/ticks.h>
|
||||
|
@ -53,7 +53,6 @@ extern void *__elf_aux_vector;
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/applet.h>
|
||||
#include <haproxy/chunk.h>
|
||||
#include <haproxy/conn_stream.h>
|
||||
#include <haproxy/dgram.h>
|
||||
#include <haproxy/global.h>
|
||||
#include <haproxy/hlua.h>
|
||||
@ -66,6 +65,7 @@ extern void *__elf_aux_vector;
|
||||
#include <haproxy/sock.h>
|
||||
#include <haproxy/ssl_sock.h>
|
||||
#include <haproxy/ssl_utils.h>
|
||||
#include <haproxy/stconn.h>
|
||||
#include <haproxy/task.h>
|
||||
#include <haproxy/tools.h>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user