haproxy/include/haproxy
Willy Tarreau 56d1d8dab0 MINOR: tools: implement trimming of floating point numbers
When using "%f" to print a float, it automatically gets 6 digits after
the decimal point and there's no way to automatically adjust to the
required ones by dropping trailing zeroes. This function does exactly
this and automatically drops the decimal point if all digits after it
were zeroes. This will make numbers more friendly in stats and makes
outputs shorter (e.g. JSON where everything is just a "number").

The function is designed to be easy to use with snprint() and chunks:

  snprintf:
    flt_trim(buf, 0, snprintf(buf, sizeof(buf), "%f", x));

  chunk_printf:
    out->data = flt_trim(out->area, 0, chunk_printf(out, "%f", x));

  chunk_appendf:
    size_t prev_data = out->data;
    out->data = flt_trim(out->area, prev_data, chunk_appendf(out, "%f", x));
2021-05-08 10:42:11 +02:00
..
acl-t.h MEDIUM: pattern: change the pat_del_* functions to delete from the references 2020-11-05 19:27:09 +01:00
acl.h REORG: global: move free acl/action in their related source files 2021-03-26 15:28:33 +01:00
action-t.h MINOR: action: replace match_pfx by a keyword flags field 2021-05-07 14:35:01 +02:00
action.h MINOR: action: replace match_pfx by a keyword flags field 2021-05-07 14:35:01 +02:00
activity-t.h MINOR: activity: add a "memory" entry to "profiling" 2021-05-05 18:55:02 +02:00
activity.h MINOR: activity: declare a new structure to collect per-function activity 2021-01-29 12:10:33 +01:00
api-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
api.h REORG: global: move initcall register code in a dedicated file 2021-03-26 15:28:33 +01:00
applet-t.h MINOR: streams: use one list per stream instead of a global one 2021-02-24 13:53:20 +01:00
applet.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
arg-t.h MINOR: opentracing: add ARGC_OT enum 2020-12-16 15:49:53 +01:00
arg.h
atomic.h MINOR: atomic: reimplement the relaxed version of x86 BTS/BTR 2021-04-12 10:01:44 +02:00
auth-t.h CLEANUP: auth: fix useless self-include of auth-t.h 2020-07-05 21:32:47 +02:00
auth.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
backend-t.h MINOR: lb/api: let callers of take_conn/drop_conn tell if they have the lock 2021-02-18 10:06:45 +01:00
backend.h MEDIUM: proxy: replace proxy->state with proxy->disabled 2020-10-09 11:27:30 +02:00
base64.h MINOR: sample: add ub64dec and ub64enc converters 2021-04-13 17:28:13 +02:00
buf-t.h CLEANUP: include: don't include stddef.h directly 2020-06-11 10:18:59 +02:00
buf.h
bug.h CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec 2021-04-07 18:18:37 +02:00
capture-t.h
capture.h
cfgdiag.h MINOR: diag: create cfgdiag module 2021-04-01 18:03:37 +02:00
cfgparse.h MINOR: action: replace match_pfx by a keyword flags field 2021-05-07 14:35:01 +02:00
channel-t.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
channel.h MINOR: channel: Rely on HTX version if appropriate in channel_may_recv() 2021-05-06 09:19:05 +02:00
check-t.h BUG/MEDIUM: tcpcheck: Don't destroy connection in the wake callback context 2021-01-21 15:21:12 +01:00
check.h MINOIR: checks/trace: Register a new trace source with its events 2021-04-12 12:09:36 +02:00
chunk.h CLEANUP: Remove useless malloc() casts 2021-04-08 20:11:58 +02:00
cli-t.h MINOR: cli: implement experimental-mode 2021-03-18 15:37:05 +01:00
cli.h MINOR: cli: add a function to look up a CLI service description 2020-12-02 09:45:18 +01:00
compat.h CLEANUP: socket: replace SOL_IP/IPV6/TCP with IPPROTO_IP/IPV6/TCP 2021-03-31 08:59:34 +02:00
compiler.h BUILD: compiler: do not use already defined __read_mostly on dragonfly 2021-04-30 17:16:36 +02:00
compression-t.h BUILD: compression: switch SLZ from out-of-tree to in-tree 2021-04-22 16:08:25 +02:00
compression.h
connection-t.h MINOR: conn-stream: Force mux to wait for read events if abortonclose is set 2021-05-06 09:19:05 +02:00
connection.h MEDIUM: connection: close front idling connection on soft-stop 2021-05-05 14:39:23 +02:00
counters-t.h MINOR: stats: improve pending connections description 2021-02-01 15:16:33 +01:00
cpuset-t.h BUG/MAJOR: fix build on musl with cpu_set_t support 2021-04-27 14:11:26 +02:00
cpuset.h BUG/MAJOR: fix build on musl with cpu_set_t support 2021-04-27 14:11:26 +02:00
debug.h MINOR: debug: let ha_dump_backtrace() dump a bit further for some callers 2021-01-22 14:48:34 +01:00
defaults.h MEDIUM: cfgparse: detect numa and set affinity if needed 2021-04-23 16:06:49 +02:00
dgram-t.h REORG: dgram: rename proto_udp to dgram 2020-06-11 10:18:59 +02:00
dgram.h REORG: dgram: rename proto_udp to dgram 2020-06-11 10:18:59 +02:00
dict-t.h REORG: include: move THREAD_LOCAL and __decl_thread() to compiler.h 2020-06-11 10:18:59 +02:00
dict.h MEDIUM: stick-tables: Add srvkey option to stick-table 2020-12-31 10:04:54 +01:00
dns-t.h MEDIUM: dns: adds code to support pipelined DNS requests over TCP. 2021-02-13 10:03:46 +01:00
dns.h MEDIUM: dns: adds code to support pipelined DNS requests over TCP. 2021-02-13 10:03:46 +01:00
dynbuf-t.h MINOR: dynbuf: use regular lists instead of mt_lists for buffer_wait 2021-02-20 12:38:18 +01:00
dynbuf.h MINOR: pools: make the pool allocator support a few flags 2021-03-22 20:54:15 +01:00
errors.h MINOR: global: define diagnostic mode of execution 2021-04-01 18:03:37 +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 REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
fcgi-app.h REORG: include: move stream.h to haproxy/stream{,-t}.h 2020-06-11 10:18:58 +02:00
fcgi.h
fd-t.h MINOR: fd: implement an exclusive syscall bit to remove the ugly "log" lock 2021-04-07 18:18:37 +02:00
fd.h BUG/MAJOR: fd: switch temp values to uint in fd_stop_both() 2021-04-07 20:46:26 +02:00
filters-t.h BUG/MEDIUM: filters/htx: Fix data forwarding when payload length is unknown 2021-01-26 09:53:52 +01:00
filters.h BUG/MAJOR: filters: Always keep all offsets up to date during data filtering 2020-11-24 14:17:32 +01:00
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 REORG: include: move proxy.h to haproxy/proxy{,-t}.h 2020-06-11 10:18:58 +02:00
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 CLEANUP: freq_ctr: make arguments of freq_ctr_total() const 2021-04-28 17:44:37 +02:00
frontend.h REORG: include: move stream.h to haproxy/stream{,-t}.h 2020-06-11 10:18:58 +02:00
global-t.h MINOR: config: keep up-to-date current file/line/section in the global struct 2021-05-06 10:35:03 +02:00
global.h MINOR: cli: set tainted when using CLI expert/experimental mode 2021-05-07 14:35:02 +02:00
h1_htx.h BUG/MINOR: mux-fcgi: Don't send normalized uri to FCGI application 2021-04-26 10:23:18 +02:00
h1.h MINOR: h1: Raise the chunk size limit up to (2^52 - 1) 2021-01-28 16:37:14 +01:00
h2.h CLEANUP: assorted typo fixes in the code and comments 2021-02-08 10:49:08 +01:00
hash.h
hlua_fcn.h
hlua-t.h CLEANUP: hlua: Use net_addr structure internally to parse and compare addresses 2021-02-26 13:53:26 +01:00
hlua.h BUG/MEDIUM: debug/lua: Use internal hlua function to dump the lua traceback 2021-03-24 16:35:23 +01:00
hpack-dec.h
hpack-enc.h
hpack-huff.h
hpack-tbl-t.h BUILD: hpack: hpack-tbl-t.h uses VAR_ARRAY but does not include compiler.h 2020-12-22 10:18:07 +01:00
hpack-tbl.h CLEANUP: hpack: export debug functions and move inlines to .h 2020-06-11 10:18:58 +02:00
http_ana-t.h MINOR: htx/http-ana: Save info about Upgrade option in the Connection header 2021-01-28 16:27:48 +01:00
http_ana.h MEDIUM: http-rules: Add wait-for-body action on request and response side 2021-04-01 16:27:40 +02:00
http_fetch.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
http_htx-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
http_htx.h CLEANUP: htx: Make http_get_stline take a const struct 2021-04-08 19:40:59 +02:00
http_rules.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
http-hdr-t.h
http-hdr.h
http-t.h MINOR: http: Add HTTP 501-not-implemented error message 2021-01-21 15:21:12 +01:00
http.h MINOR: http: Add helper functions to trim spaces and tabs 2020-12-24 17:18:00 +01:00
htx-t.h CLEANUP: htx: Remove unsued hdrs_bytes field from the HTX start-line 2021-04-28 10:51:08 +02:00
htx.h MINOR: htx: Limit length of headers name/value when a HTX message is dumped 2021-04-28 10:51:08 +02:00
init-t.h REORG: global: move initcall register code in a dedicated file 2021-03-26 15:28:33 +01:00
init.h REORG: global: move initcall register code in a dedicated file 2021-03-26 15:28:33 +01:00
initcall.h CLEANUP: initcall: rely on HA_SECTION_* instead of defining its own 2021-04-10 19:27:41 +02:00
intops.h BUG/MINOR: intops: fix mul32hi()'s off-by-one 2021-02-09 17:52:50 +01:00
istbuf.h
lb_chash-t.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
lb_chash.h REORG: include: split global.h into haproxy/global{,-t}.h 2020-06-11 10:18:58 +02:00
lb_fas-t.h
lb_fas.h REORG: include: move server.h to haproxy/server{,-t}.h 2020-06-11 10:18:58 +02:00
lb_fwlc-t.h
lb_fwlc.h REORG: include: move server.h to haproxy/server{,-t}.h 2020-06-11 10:18:58 +02:00
lb_fwrr-t.h
lb_fwrr.h REORG: include: move server.h to haproxy/server{,-t}.h 2020-06-11 10:18:58 +02:00
lb_map-t.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
lb_map.h REORG: include: move server.h to haproxy/server{,-t}.h 2020-06-11 10:18:58 +02:00
list-t.h
list.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
listener-t.h BUG/MINOR: ssl: Prevent disk access when using "add ssl crt-list" 2021-03-23 19:29:46 +01:00
listener.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +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 MINOR: log: register config file and line number on log servers. 2021-04-07 09:18:34 +02:00
mailers-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
mailers.h REORG: check: move the e-mail alerting code to mailers.c 2020-06-11 10:18:58 +02:00
map-t.h REORG: include: move sample.h to haproxy/sample{,-t}.h 2020-06-11 10:18:58 +02:00
map.h REORG: include: move sample.h to haproxy/sample{,-t}.h 2020-06-11 10:18:58 +02:00
mqtt-t.h MINOR: sample: Add converts to parses MQTT messages 2020-11-05 19:27:03 +01:00
mqtt.h MINOR: sample: Add converts to parses MQTT messages 2020-11-05 19:27:03 +01:00
mworker-t.h REORG: include: move signal.h to haproxy/signal{,-t}.h 2020-06-11 10:18:58 +02:00
mworker.h REORG: include: move signal.h to haproxy/signal{,-t}.h 2020-06-11 10:18:58 +02:00
namespace-t.h CLEANUP: include: don't include stddef.h directly 2020-06-11 10:18:59 +02:00
namespace.h CLEANUP: include: tree-wide alphabetical sort of include files 2020-06-11 10:18:59 +02:00
net_helper.h
obj_type-t.h
obj_type.h MINOR: resolvers: renames some resolvers specific types to not use dns prefix 2021-02-13 09:43:18 +01:00
openssl-compat.h BUILD: ssl: introduce fine guard for ssl random extraction functions 2021-03-26 15:19:07 +01:00
pattern-t.h MEDIUM: pattern: turn the pattern chaining to single-linked list 2020-11-05 19:27:09 +01:00
pattern.h MINOR: pattern: support purging arbitrary ranges of generations 2021-04-30 15:36:31 +02:00
payload.h REORG: include: move stream.h to haproxy/stream{,-t}.h 2020-06-11 10:18:58 +02:00
peers-t.h CLEANUP: tree-wide: reorder a few structures to plug some holes around locks 2020-10-19 14:08:13 +02:00
peers.h REORG: include: move stream.h to haproxy/stream{,-t}.h 2020-06-11 10:18:58 +02:00
pipe-t.h
pipe.h
pool-os.h
pool-t.h MINOR: pools/debug: slightly relax DEBUG_DONT_SHARE_POOLS 2021-05-05 07:47:29 +02:00
pool.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
port_range-t.h CLEANUP: tree-wide: use VAR_ARRAY instead of [0] in various definitions 2020-09-12 20:56:41 +02:00
port_range.h CLEANUP: assorted typo fixes in the code and comments 2021-01-06 17:32:03 +01:00
proto_quic.h MINOR: protocol: Create proto_quic QUIC protocol layer. 2020-12-23 11:57:26 +01:00
proto_sockpair.h MINOR: protocol: export protocol definitions 2020-12-08 14:54:08 +01:00
proto_tcp.h MINOR: protocol: export protocol definitions 2020-12-08 14:54:08 +01:00
proto_udp.h MINOR: udp: export udp_suspend_receiver() and udp_resume_receiver() 2020-12-08 18:10:18 +01:00
proto_uxst.h MINOR: protocol: export protocol definitions 2020-12-08 14:54:08 +01:00
protobuf-t.h REORG: include: move protocol_buffers.h to haproxy/protobuf{,-t}.h 2020-06-11 10:18:58 +02:00
protobuf.h CLEANUP: Apply the coccinelle patch for XXXcmp() on include/ 2021-01-04 10:09:02 +01:00
protocol-t.h MINOR: protocol: add a pair of check_events/ignore_events functions at the ctrl layer 2020-12-11 17:02:50 +01:00
protocol.h MINOR: protocol: add protocol_stop_now() to instant-stop listeners 2020-10-09 18:29:04 +02:00
proxy-t.h MINOR: proxy: define PR_CAP_LB 2021-05-07 15:12:20 +02:00
proxy.h CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec 2021-04-07 18:18:37 +02:00
qpack-tbl-t.h MINOR: qpack: Add static header table definitions for QPACK. 2021-01-04 12:31:28 +01:00
queue-t.h REORG: include: move queue.h to haproxy/queue{,-t}.h 2020-06-11 10:18:58 +02:00
queue.h Revert "OPTIM: queue: don't call pendconn_unlink() when the pendconn is not queued" 2020-10-23 09:21:55 +02:00
quic_cc-t.h CLEANUP: assorted typo fixes in the code and comments 2021-01-06 16:26:50 +01:00
quic_cc.h MINOR: quic: Add definitions for QUIC protocol. 2020-12-23 11:57:26 +01:00
quic_frame-t.h MINOR: quic: Drop packets with STREAM frames with wrong direction. 2021-01-04 12:31:28 +01:00
quic_frame.h MINOR: quic: Add definitions for QUIC protocol. 2020-12-23 11:57:26 +01:00
quic_loss-t.h MINOR: quic: Add definitions for QUIC protocol. 2020-12-23 11:57:26 +01:00
quic_loss.h MINOR: quic: Add traces for in flght ack-eliciting packet counter. 2020-12-23 11:57:26 +01:00
quic_sock.h MINOR: quic: Add definitions for QUIC protocol. 2020-12-23 11:57:26 +01:00
quic_tls-t.h MINOR: quic: Add definitions for QUIC protocol. 2020-12-23 11:57:26 +01:00
quic_tls.h BUILD: quic: Implicit conversion between SSL related enums. 2021-03-02 10:34:18 +01:00
receiver-t.h MINOR: listener: Add QUIC info to listeners and receivers. 2020-12-23 11:57:26 +01:00
regex-t.h OPTIM: regex: PCRE2 use JIT match when JIT optimisation occured. 2020-08-14 07:53:40 +02:00
regex.h OPTIM: regex: PCRE2 use JIT match when JIT optimisation occured. 2020-08-14 07:53:40 +02:00
resolvers-t.h MINOR: resolvers: Use milliseconds for cached items in resolver responses 2021-03-12 17:41:28 +01:00
resolvers.h BUG/MEDIUM: resolvers: Don't release resolution from a requester callbacks 2021-03-12 17:41:28 +01:00
ring-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
ring.h MINOR: ring: adds new ring_init function. 2021-02-13 09:43:17 +01:00
sample_data-t.h CLEANUP: include: move sample_data out of sample-t.h 2020-06-11 10:18:59 +02:00
sample-t.h MINOR: sample: add a new CLI_PARSER context for samples 2021-03-26 16:34:53 +01:00
sample.h MINOR: sample: make smp_resolve_args() return an allocate error message 2021-03-26 16:23:45 +01:00
server-t.h MINOR: server: prepare parsing for dynamic servers 2021-03-18 15:51:12 +01:00
server.h CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec 2021-04-07 18:18:37 +02:00
session-t.h MINOR: session: Add the idle duration field into the session 2020-12-04 14:41:48 +01:00
session.h MINOR: connection: move session_list member in a union 2021-05-05 14:35:36 +02:00
shctx-t.h CLEANUP: tree-wide: use VAR_ARRAY instead of [0] in various definitions 2020-09-12 20:56:41 +02:00
shctx.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
signal-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
signal.h REORG: include: move signal.h to haproxy/signal{,-t}.h 2020-06-11 10:18:58 +02:00
sink-t.h CLEANUP: tree-wide: reorder a few structures to plug some holes around locks 2020-10-19 14:08:13 +02:00
sink.h CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec 2021-04-07 18:18:37 +02:00
sock_inet.h MINOR: protocol: add a ->set_port() helper to address families 2020-12-04 15:08:00 +01:00
sock_unix.h CLEANUP: protocol: remove the now unused <handler> field of proto_fam->bind() 2020-10-15 21:47:56 +02:00
sock-t.h MINOR: sock: distinguish dgram from stream types when retrieving old sockets 2020-08-28 19:26:39 +02:00
sock.h MINOR: protocol: add a pair of check_events/ignore_events functions at the ctrl layer 2020-12-11 17:02:50 +01:00
spoe-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
spoe.h REORG: include: move spoe.h to haproxy/spoe{,-t}.h 2020-06-11 10:18:58 +02:00
ssl_ckch-t.h BUG/MINOR: ssl: Fix update of default certificate 2021-03-26 13:06:29 +01:00
ssl_ckch.h CLEANUP: ssl: remove SSL_CTX function parameter 2021-01-26 15:19:36 +01:00
ssl_crtlist-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +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_sock-t.h CLEANUP: ssl: remove unused definitions 2021-03-24 09:52:32 +01:00
ssl_sock.h BUG/MINOR: ssl: Prevent disk access when using "add ssl crt-list" 2021-03-23 19:29:46 +01:00
ssl_utils.h
stats-t.h MINOR: stats: report tainted on show info 2021-05-07 14:35:02 +02:00
stats.h MINOR: stats: export function to allocate extra proxy counters 2021-03-18 15:52:07 +01:00
stick_table-t.h BUG/MEDIUM: peers: re-work refcnt on table to protect against flush 2021-04-23 18:03:06 +02:00
stick_table.h MINOR: freq_ctr: unify freq_ctr and freq_ctr_period into freq_ctr 2021-04-11 11:11:27 +02:00
stream_interface-t.h REORG: include: move stream_interface.h to haproxy/stream_interface{,-t}.h 2020-06-11 10:18:58 +02:00
stream_interface.h MEDIUM: task: extend the state field to 32 bits 2021-03-05 08:30:08 +01:00
stream-t.h MEDIUM: Add tcp-request switch-mode action to perform HTTP upgrade 2021-04-01 13:17:19 +02:00
stream.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
task-t.h CLEANUP: task: make sure tasklet handlers always indicate their statuses 2021-03-13 11:30:19 +01:00
task.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
tcp_rules.h MINOR: actions: Export actions lookup functions 2020-12-02 09:45:18 +01:00
tcpcheck-t.h CLEANUP: assorted typo fixes in the code and comments 2020-06-26 11:27:28 +02:00
tcpcheck.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
thread-t.h Revert "MINOR: threads: change lock_t to an unsigned int" 2021-02-18 10:06:45 +01:00
thread.h MINOR: thread: implement the detection of forced cpu affinity 2021-04-23 16:06:49 +02:00
ticks.h
time.h MINOR: time: avoid u64 needlessly expensive computations for the 32-bit now_ms 2021-04-23 18:03:06 +02:00
tinfo-t.h MINOR: pools: rename CONFIG_HAP_LOCAL_POOLS to CONFIG_HAP_POOLS 2021-04-19 15:24:33 +02:00
tinfo.h REORG: includes: create tinfo.h for the thread_info struct 2020-06-29 09:57:23 +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: tools: implement trimming of floating point numbers 2021-05-08 10:42:11 +02:00
trace-t.h MINOR: trace: Add the checks as a possible trace source 2021-04-12 12:09:36 +02:00
trace.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
uri_auth-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
uri_auth.h REORG: include: split common/uri_auth.h into haproxy/uri_auth{,-t}.h 2020-06-11 10:18:58 +02:00
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 a percent-decode-unreserved normalizer 2021-04-23 19:43:45 +02:00
vars-t.h REORG: include: make list-t.h part of the base API 2020-06-11 10:18:59 +02:00
vars.h MINOR: vars: replace static functions with global ones 2020-12-16 14:20:08 +01:00
version.h [RELEASE] Released version 2.4-dev0 2020-11-05 17:20:35 +01:00
xprt_quic-t.h CLEANUP: assorted typo fixes in the code and comments 2021-01-06 16:26:50 +01:00
xprt_quic.h CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion 2021-04-21 09:20:17 +02:00
xref-t.h
xref.h CLEANUP: include: make atomic.h part of the base API 2020-06-11 10:18:59 +02:00