summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* BUG/MINOR: ssl: Use 'date' instead of 'now' in ocsp stapling callback20230302-ocsp-test-3Remi Tricot-Le Breton2023-03-021-1/+1
* MINOR: ssl: Replace now.tv_sec with date.tv_sec in ocsp update taskRemi Tricot-Le Breton2023-03-021-11/+11
* BUG/MINOR: ssl: Fix ocsp-update when using "add ssl crt-list"Remi Tricot-Le Breton2023-03-024-0/+96
* MINOR: ssl: Add ocsp-update information to "show ssl crt-list"Remi Tricot-Le Breton2023-03-021-0/+7
* REGTESTS: ssl: Add test for new ocsp update cli commandsRemi Tricot-Le Breton2023-03-021-0/+94
* REGTESTS: ssl: Fix ocsp update crt-listsRemi Tricot-Le Breton2023-03-022-2/+2
* MINOR: ssl: Add global options to modify ocsp update min/max delayRemi Tricot-Le Breton2023-03-026-9/+103
* MINOR: ssl: Add way to dump ocsp response in base64Remi Tricot-Le Breton2023-03-022-28/+86
* MINOR: ssl: Increment OCSP update replay delay in case of failureRemi Tricot-Le Breton2023-03-021-3/+19
* MINOR: ssl: Reorder struct certificate_ocsp membersRemi Tricot-Le Breton2023-03-021-1/+1
* MINOR: ssl: Use dedicated proxy and log-format for OCSP updateRemi Tricot-Le Breton2023-03-022-2/+60
* MINOR: ssl: Add sample fetches related to OCSP updateRemi Tricot-Le Breton2023-03-021-0/+93
* MINOR: ssl: Add 'show ssl ocsp-updates' CLI commandRemi Tricot-Le Breton2023-03-022-0/+187
* MINOR: ssl: Add certificate's path to certificate_ocsp structureRemi Tricot-Le Breton2023-03-022-4/+8
* MINOR: ssl: Store specific ocsp update errors in response and update ctxRemi Tricot-Le Breton2023-03-022-2/+33
* MINOR: ssl: Add ocsp update success/failure countersRemi Tricot-Le Breton2023-03-022-1/+12
* MINOR: ssl: Reinsert ocsp update entries later in case of unknown errorRemi Tricot-Le Breton2023-03-021-1/+1
* MINOR: ssl: Destroy ocsp update http_client during cleanupRemi Tricot-Le Breton2023-03-021-0/+5
* BUG/MINOR: mxu-h1: Report a parsing error on abort with pending dataChristopher Faulet2023-03-011-3/+10
* BUG/MEDIUM: http-ana: Don't close request side when waiting for responseChristopher Faulet2023-03-011-1/+2
* BUG/MINOR: http-ana: Do a L7 retry on read error if there is no responseChristopher Faulet2023-03-011-1/+9
* BUG/MINOR: http-ana: Don't increment conn_retries counter before the L7 retryChristopher Faulet2023-03-011-2/+1
* MINOR: quic: notify on send readyAmaury Denoyelle2023-03-013-2/+9
* MEDIUM: quic: implement poller subscribe on sendto errorAmaury Denoyelle2023-03-013-9/+36
* MINOR: quic: purge txbuf before preparing new packetsAmaury Denoyelle2023-03-011-0/+37
* MINOR: quic: implement qc_notify_send()Amaury Denoyelle2023-03-012-21/+24
* MINOR: quic: simplify return path in send functionsAmaury Denoyelle2023-03-011-20/+28
* REGTEST: added tests covering smp_fetch_hdr_ip()Oto Valek2023-03-011-4/+20
* BUG/MINOR: http-fetch: recognize IPv6 addresses in square brackets in req.hdr...Oto Valek2023-03-011-0/+8
* BUG/MINOR: http-check: Skip C-L header for empty body when it's not mandatoryChristopher Faulet2023-02-281-3/+9
* BUG/MINOR: http-check: Don't set HTX_SL_F_BODYLESS flag with a log-format bodyChristopher Faulet2023-02-281-1/+1
* BUG/MINOR: mux-h1: Don't report an error on an early response closeChristopher Faulet2023-02-281-1/+1
* BUG/MEDIUM: connection: Clear flags when a conn is removed from an idle listChristopher Faulet2023-02-284-3/+14
* MINOR: quic: consider EBADF as critical on send()Amaury Denoyelle2023-02-281-1/+1
* MEDIUM: quic: improve fatal error handling on sendAmaury Denoyelle2023-02-283-39/+31
* MINOR: tinfo: make thread_set functions return nth group/mask instead of firstWilly Tarreau2023-02-283-12/+15
* CLEANUP: listener: only store conn counts for local threadsWilly Tarreau2023-02-282-6/+6
* BUG/MEDIUM: fd: make fd_delete() support being called from a different groupWilly Tarreau2023-02-271-2/+25
* BUG/MINOR: fd: used the update list from the fd's group instead of tgidWilly Tarreau2023-02-271-3/+5
* DOC: config: Replace TABs by spacesChristopher Faulet2023-02-271-11/+11
* DOC: config: Clarify the meaning of 'hold' in the 'resolvers' sectionChristopher Faulet2023-02-271-9/+47
* MEDIUM: mux-quic: Don't expect data from server as long as request is unfinishedChristopher Faulet2023-02-272-1/+8
* MEDIUM: mux-h2: Don't expect data from server as long as request is unfinishedChristopher Faulet2023-02-271-1/+10
* MEDIUM: mux-h1: Don't expect data from server as long as request is unfinishedChristopher Faulet2023-02-271-1/+21
* BUG/MEDIUM: stconn: Report a blocked send if some output data are not consumedChristopher Faulet2023-02-272-13/+12
* MINOR: stconn: Report a send activity when endpoint is willing to consume dataChristopher Faulet2023-02-272-10/+12
* MEDIUM: stream: Eventually handle stream timeouts when exiting process_stream()Christopher Faulet2023-02-271-0/+7
* MINOR: stream: Handle stream's timeouts in a dedicated functionChristopher Faulet2023-02-271-35/+41
* BUG/MINOR: stream: Remove BUG_ON about the task expiration in process_stream()Christopher Faulet2023-02-271-1/+0
* BUG/MEDIUM: h1-htx: Never copy more than the max data allowed during parsingChristopher Faulet2023-02-271-4/+8