haproxy/include/haproxy
Willy Tarreau 4ad1c9635a BUG/MINOR: stream: do not use client-fin/server-fin with HTX
Historically the client-fin and server-fin timeouts were made to allow
a connection closure to be effective quickly if the last data were sent
down a socket and the client didn't close, something that can happen
when the peer's FIN is lost and retransmits are blocked by a firewall
for example. This made complete sense in 1.5 for TCP and HTTP in close
mode. But nowadays with muxes, it's not done at the right layer anymore
and even the description doesn't match what is being done, because what
happens is that the stream will abort the whole transfer after it's done
sending to the mux and this timeout expires.

We've seen in GH issue 2095 that this can happen with very short timeout
values, and while this didn't trigger often before, now that the muxes
(h2 & quic) properly report an end of stream before even the first
sc_conn_sync_recv(), it seems that it can happen more often, and have
two undesirable effects:
  - logging a timeout when that's not the case
  - aborting the request channel, hence the server-side conn, possibly
    before it had a chance to be put back to the idle list, causing
    this connection to be closed and not reusable.

Unfortunately for TCP (mux_pt) this remains necessary because the mux
doesn't have a timeout task. So here we're adding tests to only do
this through an HTX mux. But to be really clean we should in fact
completely drop all of this and implement these timeouts in the mux
itself.

This needs to be backported to 2.8 where the issue was discovered,
and maybe carefully to older versions, though that is not sure at
all. In any case, using a higher timeout or removing client-fin in
HTTP proxies is sufficient to make the issue disappear.
2023-06-02 16:33:40 +02:00
..
acl-t.h CLEANUP: assorted typo fixes in the code and comments 2022-10-30 17:17:56 +01:00
acl.h CLEANUP: acl: discard prune_acl_cond() function 2023-05-11 15:37:04 +02:00
action-t.h MINOR: stick-table: implement the sc-add-gpc() action 2023-01-07 09:11:22 +01:00
action.h MINOR: action: add a function to dump the list of actions for a ruleset 2022-03-30 11:19:22 +02:00
activity-t.h MEDIUM: tasks/activity: combine the called function with the caller 2022-09-08 16:21:22 +02:00
activity.h MEDIUM: tasks/activity: combine the called function with the caller 2022-09-08 16:21:22 +02:00
api-t.h
api.h REORG: global: move initcall register code in a dedicated file 2021-03-26 15:28:33 +01:00
applet-t.h MINOR: anon: store the anonymizing key in the CLI's appctx 2022-09-17 11:27:09 +02:00
applet.h MEDIUM: tree-wide: Change sc API to specify required free space to progress 2023-05-05 15:44:23 +02:00
arg-t.h MINOR: sample: add ARGC_OPT 2023-01-27 15:18:59 +01:00
arg.h MINOR: arg: add a free_args() function to free an args array 2021-07-16 19:18:41 +02:00
atomic.h BUILD: atomic: atomic.h may need compiler.h on ARMv8.2-a 2022-12-08 08:36:24 +01:00
auth-t.h
auth.h
backend-t.h MEDIUM: backend: add new "balance hash <expr>" algorithm 2022-04-25 16:09:26 +02:00
backend.h MEDIUM: clock: replace timeval "now" with integer "now_ns" 2023-04-28 16:08:08 +02:00
base64.h MINOR: sample: add ub64dec and ub64enc converters 2021-04-13 17:28:13 +02:00
buf-t.h
buf.h MINOR: buffer: add br_single() to check if a buffer ring has more than one buf 2023-03-16 18:45:46 +01:00
bug.h DEBUG: crash using an invalid opcode on aarch64 instead of an invalid access 2023-04-25 19:53:39 +02:00
capture-t.h
capture.h
cbuf-t.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
cbuf.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
cfgcond-t.h MINOR: cfgcond: Implement enabled condition expression 2023-02-21 11:44:55 +01:00
cfgcond.h BUG/MEDIUM: cfgcond: limit recursion level in the condition expression parser 2021-07-20 18:03:08 +02:00
cfgdiag.h CLEANUP: tree-wide: fix prototypes for functions taking no arguments. 2021-09-15 11:07:18 +02:00
cfgparse.h MINOR: config: allow cpu-map to take commas in lists of ranges 2023-05-05 18:41:52 +02:00
channel-t.h MEDIUM: tree-wide: Move flags about shut from the channel to the SC 2023-04-05 08:57:06 +02:00
channel.h MINOR: stconn: Add a flag to report EOS at the stream-connector level 2023-04-17 17:41:28 +02:00
check-t.h MINOR: checks: use a nanosecond counters instead of timeval for checks->start 2023-04-28 16:08:08 +02:00
check.h MINOR: server: srv_append_status refacto 2023-04-21 14:36:45 +02:00
chunk.h MINOR: chunk: inline alloc_trash_chunk() 2022-08-17 10:45:22 +02:00
cli-t.h MINOR: cli: add an option to display the uptime in the CLI's prompt 2023-05-11 16:38:52 +02:00
cli.h CLEANUP: assorted typo fixes in the code and comments 2022-11-30 14:02:36 +01:00
clock.h MINOR: clock: provide a function to automatically adjust now_offset 2023-05-17 09:33:54 +02:00
compat.h MINOR: clock: add now_mono_time_fast() function 2023-04-19 11:03:31 +02:00
compiler.h BUILD: compiler: systematically set USE_OBSOLETE_LINKER with TCC 2023-05-24 21:37:06 +02:00
compression-t.h MEDIUM: compression: Make it so we can compress requests as well. 2023-04-07 00:49:17 +02:00
compression.h MINOR: compression: Store algo and type for both request and response 2023-04-07 00:46:59 +02:00
connection-t.h BUG/MAJOR: conn-idle: fix hash indexing issues on idle conns 2022-10-03 12:06:36 +02:00
connection.h BUG/MEDIUM: connection: Preserve flags when a conn is removed from an idle list 2023-03-16 15:34:20 +01:00
counters-t.h MINOR: compression: Count separately request and response compression 2023-04-07 00:47:04 +02:00
cpuset-t.h MEDIUM: cpu-map: replace the process number with the thread group number 2022-07-15 19:43:10 +02:00
cpuset.h MEDIUM: cpu-map: replace the process number with the thread group number 2022-07-15 19:43:10 +02:00
debug.h CLEANUP: debug: remove the now unused ha_thread_dump_all_to_trash() 2023-05-04 19:19:04 +02:00
defaults.h BUG/MINOR: mworker: use MASTER_MAXCONN as default maxconn value 2023-03-09 14:28:44 +01:00
dgram-t.h BUG/MAJOR: dns: multi-thread concurrency issue on UDP socket 2022-05-11 15:20:10 +02:00
dgram.h
dict-t.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
dict.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
dns-t.h MINOR: resolvers/dns: split dns and resolver counters in dns_counter struct 2021-11-03 17:16:46 +01:00
dns.h DOC: fix a few remainig cases of "Haproxy" and "HAproxy" in doc and comments 2021-05-09 06:50:46 +02:00
dynbuf-t.h
dynbuf.h MINOR: dynbuf: set POOL_F_NO_FAIL on buffer allocation 2023-03-21 09:15:13 +01:00
errors.h MINOR: stats: report the total number of warnings issued 2023-05-11 12:02:21 +02:00
event_hdl-t.h MINOR: checks/event_hdl: SERVER_CHECK event 2023-05-05 16:28:32 +02:00
event_hdl.h MINOR: event_hdl: dynamically allocated event data members 2023-04-21 14:36:45 +02:00
extcheck.h MEDIUM: task: extend the state field to 32 bits 2021-03-05 08:30:08 +01:00
fcgi-app-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
fcgi-app.h
fcgi.h
fd-t.h MINOR: fd: add a lock bit with the tgid 2023-04-13 16:57:51 +02:00
fd.h MINOR: fd: implement fd_migrate_on() to migrate on a non-local thread 2023-04-13 16:57:51 +02:00
filters-t.h DOC: fix a few remainig cases of "Haproxy" and "HAproxy" in doc and comments 2021-05-09 06:50:46 +02:00
filters.h
fix-t.h BUG/MINOR: sample: Rename SenderComID/TargetComID to SenderCompID/TargetCompID 2021-03-10 10:44:20 +01:00
fix.h BUG/MINOR: sample: Rename SenderComID/TargetComID to SenderCompID/TargetCompID 2021-03-10 10:44:20 +01:00
flt_http_comp.h
freq_ctr-t.h MINOR: freq_ctr: unify freq_ctr and freq_ctr_period into freq_ctr 2021-04-11 11:11:27 +02:00
freq_ctr.h MINOR: freq_ctr: add opportunistic versions of swrate_add() 2022-12-20 14:51:12 +01:00
frontend.h
global-t.h MINOR: init: pre-allocate kernel data structures on init 2023-05-26 09:28:18 +02:00
global.h MEDIUM: tasks/fd: replace sleeping_thread_mask with a TH_FL_SLEEPING flag 2022-07-01 19:15:14 +02:00
h1_htx.h BUG/MEDIUM: mux-h1: Adjust conditions to ask more space in the channel buffer 2021-09-23 16:13:17 +02:00
h1.h BUILD: tree-wide: mark a few numeric constants as explicitly long long 2022-01-28 19:04:02 +01:00
h2.h MINOR: h2: add h2_phdr_to_ist() to make ISTs from pseudo headers 2023-01-26 15:49:43 +01:00
h3_stats-t.h MINOR: h3: Add a statistics module for h3 2022-05-30 09:59:26 +02:00
h3_stats.h MINOR: h3: Add a statistics module for h3 2022-05-30 09:59:26 +02:00
h3.h MINOR: h3: add traces on decode_qcs callback 2023-02-17 17:31:52 +01:00
hash.h
hlua_fcn.h MINOR: hlua_fcn: add Server.get_proxy() 2023-05-05 16:28:32 +02:00
hlua-t.h CLEANUP: hlua: avoid confusion between internal timers and tick based timers 2023-04-19 11:03:31 +02:00
hlua.h MINOR: hlua: declare hlua_yieldk() function 2023-05-05 16:28:32 +02:00
hpack-dec.h
hpack-enc.h
hpack-huff.h
hpack-tbl-t.h
hpack-tbl.h
hq_interop.h MINOR: quic: support hq-interop 2021-11-18 10:50:58 +01:00
http_ana-t.h BUG/MUNOR: http-ana: Use an unsigned integer for http_msg flags 2023-04-06 08:58:45 +02:00
http_ana.h CLEANUP: http-ana: Remove HTTP_MSG_ERROR state 2023-01-13 11:22:13 +01:00
http_client-t.h MINOR: httpclient: Make the CLI flags public for future use 2022-12-21 11:21:07 +01:00
http_client.h MINOR: httpclient: export httpclient_create_proxy() 2022-09-14 14:34:39 +02:00
http_ext-t.h MEDIUM: proxy/http_ext: implement dynamic http_ext 2023-01-27 15:18:59 +01:00
http_ext.h MEDIUM: proxy/http_ext: implement dynamic http_ext 2023-01-27 15:18:59 +01:00
http_fetch.h
http_htx-t.h
http_htx.h MINOR: http_htx: add http_prepend_header() to prepend value to header 2023-01-27 15:18:59 +01:00
http_rules.h MINOR: proxy: add http_free_redirect_rule() function 2023-05-11 15:37:04 +02:00
http-hdr-t.h
http-hdr.h
http-t.h MINOR: http: Add http_auth_bearer sample fetch 2021-10-14 16:38:07 +02:00
http.h MINOR: http_fetch: add case insensitive support for smp_fetch_url_param 2023-03-30 14:11:10 +02:00
htx-t.h MINOR: flags/htx: use flag dumping to show htx and start-line flags 2022-09-09 16:59:29 +02:00
htx.h MINOR: htx: add function to set EOM reliably 2023-05-12 15:29:28 +02:00
init-t.h MINOR: init: add the pre-check callback 2022-04-22 15:45:47 +02:00
init.h MINOR: init: add the pre-check callback 2022-04-22 15:45:47 +02:00
initcall.h BUILD: compiler: use a more portable set of asm(".weak") statements 2022-04-14 16:57:12 +02:00
intops.h MINOR: intops: add a function to return a valid bit position from a mask 2022-06-21 20:29:57 +02:00
istbuf.h
jwt-t.h MINOR: jwt: jwt_verify returns negative values in case of error 2021-10-18 16:02:29 +02:00
jwt.h MEDIUM: jwt: Add jwt_verify converter to verify JWT integrity 2021-10-14 16:38:14 +02:00
lb_chash-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
lb_chash.h BUG/MINOR: proxy: Missing calloc return value check in chash_init_server_tree 2021-05-31 10:55:51 +02:00
lb_fas-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
lb_fas.h
lb_fwlc-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
lb_fwlc.h
lb_fwrr-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
lb_fwrr.h
lb_map-t.h
lb_map.h
list-t.h
list.h DEBUG: list: add DEBUG_LIST to purposely corrupt list heads after delete 2023-05-11 11:33:35 +02:00
listener-t.h MINOR: ssl: allow to change the signature algorithm for client authentication 2023-05-05 00:05:46 +02:00
listener.h MINOR: stats: report the number of times the global maxconn was reached 2023-05-11 13:51:31 +02:00
log-t.h MINOR: log: register config file and line number on log servers. 2021-04-07 09:18:34 +02:00
log.h BUG/MINOR: httpclient/log: free of invalid ptr with httpclient_log_format 2022-12-22 15:39:31 +01:00
mailers-t.h
mailers.h MINOR: mailers/hlua: disable email sending from lua 2023-05-05 16:28:32 +02:00
map-t.h
map.h
mqtt-t.h MEDIUM: mqtt: support mqtt_is_valid and mqtt_field_value converters for MQTTv3.1 2022-03-22 09:25:52 +01:00
mqtt.h
mux_fcgi-t.h CLEANUP: assorted typo fixes in the code and comments 2022-11-30 14:02:36 +01:00
mux_h1-t.h CLEANUP: assorted typo fixes in the code and comments 2022-11-30 14:02:36 +01:00
mux_h2-t.h CLEANUP: mux-h2: Remove unused fields in h2c structures 2022-11-17 14:33:15 +01:00
mux_quic-t.h MINOR: mux-quic: remove nb_streams from qcc 2023-05-26 17:17:00 +02:00
mux_quic.h CLEANUP: mux-quic: rename internal functions 2023-05-30 15:45:55 +02:00
mworker-t.h MINOR: mworker: implement a reload failure counter 2021-11-10 15:53:01 +01:00
mworker.h MINOR: mworker: allocate and initialize a mworker_proc 2022-01-28 23:52:36 +01:00
namespace-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
namespace.h
ncbuf-t.h CLEANUP: assorted typo fixes in the code and comments 2022-08-06 17:12:51 +02:00
ncbuf.h CLEANUP: ncbuf: inline small functions 2022-11-29 15:14:39 +01:00
net_helper.h MINOR: net_helper: add functions for pointers 2021-09-23 15:27:25 +02:00
obj_type-t.h CLEANUP: obj_type: rename OBJ_TYPE_CS to OBJ_TYPE_SC 2022-05-27 19:33:35 +02:00
obj_type.h CLEANUP: obj_type: rename OBJ_TYPE_CS to OBJ_TYPE_SC 2022-05-27 19:33:35 +02:00
openssl-compat.h BUILD: ssl: get0_verified chain is available on libreSSL 2023-05-15 15:16:15 +02:00
pattern-t.h CLEANUP: assorted typo fixes in the code and comments 2022-10-30 17:17:56 +01:00
pattern.h CLEANUP: pattern: remove export of non-existent function pattern_delete() 2021-05-25 08:44:48 +02:00
payload.h
peers-t.h BUILD: peers: peers-t.h depends on stick-table-t.h 2022-12-16 15:51:44 +01:00
peers.h CLEANUP: tree-wide: remove unneeded include time.h in ~20 files 2021-10-07 01:41:14 +02:00
pipe-t.h
pipe.h
pool-os.h REORG: pool: move all the OS specific code to pool-os.h 2022-12-08 17:32:57 +01:00
pool-t.h OPTIM: pool: split the read_mostly from read_write parts in pool_head 2022-12-20 14:51:12 +01:00
pool.h MINOR: pools: report a replaced memory allocator instead of just malloc_trim() 2023-03-22 18:05:02 +01:00
port_range-t.h
port_range.h BUG/MINOR: server: Missing calloc return value check in srv_parse_source 2021-05-31 10:50:32 +02:00
proto_quic.h MEDIUM: quic: use a global CID trees list 2023-04-18 16:54:17 +02:00
proto_sockpair.h
proto_tcp.h BUILD: proto_tcp: export the correct names for proto_tcpv[46] 2023-04-23 09:46:15 +02:00
proto_udp.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
proto_uxst.h
protobuf-t.h
protobuf.h
protocol-t.h MINOR: protocol: perform a live check for SO_REUSEPORT support 2023-04-23 09:46:15 +02:00
protocol.h MINOR: protocol: add a function to check if some features are supported 2023-04-23 09:46:15 +02:00
proxy-t.h CLEANUP: proxy: remove stop_time related dead code 2023-03-28 20:26:47 +02:00
proxy.h MINOR: proxy: factorize send rate measurement 2023-04-28 16:53:44 +02:00
qmux_http.h MINOR: mux-quic: remove dedicated function to handle standalone FIN 2023-05-12 15:50:30 +02:00
qmux_trace.h MINOR: mux-quic: add traces for stream wake 2023-05-11 14:04:51 +02:00
qpack-dec.h MINOR: qpack: report error on enc/dec stream close 2022-08-17 11:04:53 +02:00
qpack-enc.h MINOR: qpack: encode headers functions 2021-09-23 15:27:25 +02:00
qpack-t.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
qpack-tbl-t.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
qpack-tbl.h CLEANUP: tree-wide: remove a few rare non-ASCII chars 2022-03-04 08:58:32 +01:00
queue-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
queue.h CLEANUP: assorted typo fixes in the code and comments 2022-10-30 17:17:56 +01:00
quic_cc-t.h BUG/MAJOR: quic: Congestion algorithms states shared between the connection 2023-04-02 13:10:13 +02:00
quic_cc.h MINOR: quic: Adjustments for generic control congestion traces 2023-03-31 09:54:59 +02:00
quic_conn-t.h MINOR: quic: fix stats naming for flow control BLOCKED frames 2023-05-26 17:17:00 +02:00
quic_conn.h MEDIUM: quic: streamline error notification 2023-05-11 14:04:51 +02:00
quic_enc.h MINOR: h3: extend function for QUIC varint encoding 2023-01-19 15:09:01 +01:00
quic_frame-t.h CLEANUP: quic: rename frame types with an explicit prefix 2023-04-24 15:35:03 +02:00
quic_frame.h CLEANUP: quic: Rename several <buf> variables in quic_frame.(c|h) 2023-05-09 10:48:40 +02:00
quic_loss-t.h MINOR: quic: Add packet loss and maximum cc window to "show quic" 2023-04-13 19:20:08 +02:00
quic_loss.h MINOR: quic: Add packet loss and maximum cc window to "show quic" 2023-04-13 19:20:08 +02:00
quic_sock-t.h CLEANUP: quic: improve naming for rxbuf/datagrams handling 2022-10-13 11:06:48 +02:00
quic_sock.h MINOR: quic: properly finalize thread rebinding 2023-04-18 17:09:02 +02:00
quic_stats-t.h MINOR: quic: fix stats naming for flow control BLOCKED frames 2023-05-26 17:17:00 +02:00
quic_stats.h MINOIR: quic_stats: add QUIC connection errors counters 2022-05-30 09:59:26 +02:00
quic_stream-t.h MEDIUM: quic: implement multi-buffered Tx streams 2022-04-21 12:03:20 +02:00
quic_stream.h BUG/MINOR: mux-quic: differentiate failure on qc_stream_desc alloc 2023-05-12 16:26:20 +02:00
quic_tls-t.h MINOR: quic: Replace v2 draft definitions by those of the final 2 version 2023-01-17 16:35:20 +01:00
quic_tls.h BUILD: quic: re-enable chacha20_poly1305 for libressl 2023-05-23 19:20:36 +02:00
quic_tp-t.h BUG/MINOR: quic: Possible crash when dumping version information 2023-05-10 13:26:37 +02:00
quic_tp.h BUG/MINOR: quic: Possible crash when dumping version information 2023-05-10 13:26:37 +02:00
receiver-t.h MINOR: receiver: add RX_F_MUST_DUP to indicate that an rx must be duped 2023-04-21 17:41:26 +02:00
regex-t.h BUILD/MINOR: regex: avoid a build warning on USE_PCRE2 with -Wundef 2021-08-28 12:49:58 +02:00
regex.h
resolvers-t.h MINOR: resolvers: shut the warning when "default" resolvers is implicit 2022-08-24 14:56:42 +02:00
resolvers.h CLEANUP: stats: rename all occurrences of stconn "cs" to "sc" 2022-05-27 19:33:35 +02:00
ring-t.h CLEANUP: ring: remove the now unused ring's offset 2023-02-24 09:26:30 +01:00
ring.h MINOR: ring: ring_cast_from_area() cast from an allocated area 2022-10-13 16:45:28 +02:00
sample_data-t.h
sample-t.h MINOR: sample: add a new CLI_PARSER context for samples 2021-03-26 16:34:53 +01:00
sample.h BUILD: sample: use __fallthrough in smp_is_rw() and smp_dup() 2022-11-14 11:14:02 +01:00
sc_strm.h BUG/MINOR: stream: do not use client-fin/server-fin with HTX 2023-06-02 16:33:40 +02:00
server-t.h MINOR: checks/event_hdl: SERVER_CHECK event 2023-05-05 16:28:32 +02:00
server.h MINOR: checks/event_hdl: SERVER_CHECK event 2023-05-05 16:28:32 +02:00
session-t.h MEDIUM: tree-wide: replace timeval with nanoseconds in tv_accept and tv_request 2023-04-28 16:08:08 +02:00
session.h MEDIUM: stick-table: set the track-sc limit at boottime via tune.stick-counters 2023-01-06 18:08:49 +01:00
shctx-t.h CLEANUP: shctx: remove the different inter-process locking techniques 2021-06-15 16:52:42 +02:00
shctx.h CLEANUP: shctx: remove the different inter-process locking techniques 2021-06-15 16:52:42 +02:00
show_flags-t.h BUILD: flags: really restrict the cases where flags are exposed 2022-11-24 08:32:27 +01:00
signal-t.h
signal.h CLEANUP: tree-wide: fix prototypes for functions taking no arguments. 2021-09-15 11:07:18 +02:00
sink-t.h MINOR: ring: add support for a backing-file 2022-08-12 11:18:46 +02:00
sink.h BUG/MEDIUM: sink: bad init sequence on tcp sink from a ring. 2022-09-13 17:03:30 +02:00
sock_inet.h CLEANUP: fix a few reported typos in code comments 2023-05-07 07:07:44 +02:00
sock_unix.h
sock-t.h MINOR: sock: move the unused socket cleaning code into its own function 2022-01-28 19:04:02 +01:00
sock.h MINOR: sock: add a function to check for SO_REUSEPORT support at runtime 2023-04-23 09:46:15 +02:00
spoe-t.h MINOR: spoe: switch the timeval-based timestamps to nanosecond timestamps 2023-04-28 16:08:08 +02:00
spoe.h CLEANUP: assorted typo fixes in the code and comments 2023-04-01 18:33:40 +02:00
ssl_ckch-t.h MINOR: ssl: Store 'ocsp-update' mode in the ckch_data and check for inconsistencies 2022-12-21 11:21:07 +01:00
ssl_ckch.h MEDIUM: ssl: rename the struct "cert_key_and_chain" to "ckch_data" 2022-12-02 11:48:30 +01:00
ssl_crtlist-t.h CLEANUP: tree-wide: only include ebtree-t from type files 2021-10-07 01:41:14 +02:00
ssl_crtlist.h BUG/MINOR: ssl: Prevent disk access when using "add ssl crt-list" 2021-03-23 19:29:46 +01:00
ssl_ocsp-t.h MINOR: ssl: Use ocsp update task for "update ssl ocsp-response" command 2023-03-14 11:07:32 +01:00
ssl_ocsp.h MINOR: ssl/ocsp: add a function to check the OCSP update configuration 2023-02-08 11:40:31 +01:00
ssl_sock-t.h MINOR: ssl: allow to change the signature algorithm for client authentication 2023-05-05 00:05:46 +02:00
ssl_sock.h MINOR: ssl: rename confusing ssl_bind_kws 2023-02-16 16:03:45 +01:00
ssl_utils.h MINOR: ssl: add new sample ssl_c_r_dn 2023-05-15 10:48:05 +02:00
stats-t.h MINOR: stats: protect against future stats fields omissions 2023-06-02 08:39:53 +02:00
stats.h MINOR: stats: Use the applet API to write data 2023-05-05 15:41:29 +02:00
stconn-t.h MINOR: stconn: Add a cross-reference between SE descriptor 2023-05-11 15:37:04 +02:00
stconn.h MEDIUM: stconn: make the SE_FL_ERR_PENDING to ERROR transition systematic 2023-05-23 16:17:04 +02:00
stick_table-t.h MINOR: stick-table: store a per-table hash seed and use it 2022-11-28 18:58:06 +01:00
stick_table.h BUG/MINOR: stick_table: alert when type len has incorrect characters 2023-04-13 14:46:08 +02:00
stream-t.h MINOR: master/cli: also implement the timed prompt on the master CLI 2023-05-11 16:38:52 +02:00
stream.h MINOR: stream: Introduce stream_abort() to abort on both sides in same time 2023-04-14 14:04:59 +02:00
task-t.h MINOR: flags/task: use flag dumping for task state 2022-09-09 16:52:09 +02:00
task.h MINOR: Make tasklet_free() safe to be called with NULL 2023-04-23 00:28:25 +02:00
tcp_rules.h
tcpcheck-t.h CLEANUP: assorted typo fixes in the code and comments 2022-10-30 17:17:56 +01:00
tcpcheck.h BUILD: tcpcheck: do not declare tcp_check_keywords_register() inline 2022-03-02 14:54:44 +01:00
thread-t.h MEDIUM: debug/threads: make the lock debugging take tgroups into account 2022-07-15 19:41:26 +02:00
thread.h MEDIUM: quic: use a global CID trees list 2023-04-18 16:54:17 +02:00
ticks.h REORG: time/ticks: move now_ms and global_now_ms definitions to ticks.h 2021-10-07 01:41:14 +02:00
time.h BUG/MINOR: time: fix NS_TO_TV macro 2023-05-04 18:09:50 +02:00
tinfo-t.h MEDIUM: debug: simplify the thread dump mechanism 2023-05-04 19:15:44 +02:00
tinfo.h MINOR: thread: keep a bitmask of enabled groups in thread_set 2023-04-13 16:57:51 +02:00
tools-t.h MINOR: tools: introduce new option PA_O_DEFAULT_DGRAM on str2sa_range. 2021-03-23 15:32:22 +01:00
tools.h MINOR: ssl: Add OCSP request helper function 2022-12-21 11:21:07 +01:00
trace-t.h MEDIUM: applet/trace: Register a new trace source with its events 2023-04-05 08:46:06 +02:00
trace.h BUG/MINOR: trace: fix hardcoded level for TRACE_PRINTF 2023-03-22 15:31:55 +01:00
uri_auth-t.h
uri_auth.h
uri_normalizer-t.h MINOR: uri_normalizer: Add enum uri_normalizer_err 2021-04-19 09:05:57 +02:00
uri_normalizer.h MINOR: uri_normalizer: Add fragment-encode normalizer 2021-05-11 17:24:32 +02:00
vars-t.h CLEANUP: assorted typo fixes in the code and comments This is 29th iteration of typo fixes 2022-01-03 14:40:58 +01:00
vars.h OPTIM: vars: only takes the variables lock on shared entries 2021-09-08 15:44:45 +02:00
version.h [RELEASE] Released version 2.9-dev0 2023-05-31 16:29:19 +02:00
xref-t.h
xref.h
xxhash.h CLEANUP: Move XXH3 macro from haproxy/compat.h to haproxy/xxhash.h 2021-09-11 20:37:50 +02:00