[PATCH 2/3] CI: extend spell check white list

2024-01-24 Thread Ilya Shipitsin
siz - seen in src/debug.c
EXPERIM - seen in src/cli.c
---
 .github/workflows/codespell.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index de99e4c4d..385b698a5 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -17,5 +17,5 @@ jobs:
 - uses: codespell-project/actions-codespell@master
   with:
 skip: 
CHANGELOG,Makefile,*.fig,*.pem,./doc/design-thoughts,./doc/internals
-ignore_words_list: 
ist,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen,ifset,thrid,strack,ba,chck,hel,unx,mor,clen,collet,bu,htmp
+ignore_words_list: 
ist,ists,hist,wan,ca,cas,que,ans,te,nd,referer,ot,uint,iif,fo,keep-alives,dosen,ifset,thrid,strack,ba,chck,hel,unx,mor,clen,collet,bu,htmp,siz,experim
 uri_ignore_words_list: trafic,ressources
-- 
2.43.0




[PATCH 3/3] CI: enable spell chek on git push

2024-01-24 Thread Ilya Shipitsin
---
 .github/workflows/codespell.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 385b698a5..f54fe6d8b 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -1,8 +1,7 @@
 name: Spelling Check
 
 on:
-  schedule:
-- cron: "0 0 * * 2"
+  push:
 
 permissions:
   contents: read
-- 
2.43.0




[PATCH 1/3] CLEANUP: fix spelling of "elemt"

2024-01-24 Thread Ilya Shipitsin
---
 include/haproxy/quic_sock-t.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/haproxy/quic_sock-t.h b/include/haproxy/quic_sock-t.h
index 67a574929..0b9c18c12 100644
--- a/include/haproxy/quic_sock-t.h
+++ b/include/haproxy/quic_sock-t.h
@@ -36,8 +36,8 @@ struct quic_dgram {
struct sockaddr_storage daddr;
struct quic_conn *qc;
 
-   struct list recv_list; /* elemt to quic_receiver_buf . */
-   struct mt_list handler_list; /* elem to quic_dghdlr . */
+   struct list recv_list; /* element pointing to quic_receiver_buf 
. */
+   struct mt_list handler_list; /* element pointing to quic_dghdlr 
. */
 };
 
 /* QUIC datagram handler */
-- 
2.43.0




[PATCH 0/3] fix speling remnants, enable spel chek on push

2024-01-24 Thread Ilya Shipitsin
it is very fast check, should not affect developer velocity much

Ilya Shipitsin (3):
  CLEANUP: fix spelling of "elemt"
  CI: extend spell check white list
  CI: enable spell chek on git push

 .github/workflows/codespell.yml | 5 ++---
 include/haproxy/quic_sock-t.h   | 4 ++--
 2 files changed, 4 insertions(+), 5 deletions(-)

-- 
2.43.0




Re: USE_QUIC=1 support for awslc

2024-01-24 Thread Frederic Lecaille
On 1/24/24 05:58, Yaacov Akiba Slama wrote:
> So right now, the only thing missing in aws_lc in order to fully support
> quic is the implementation of EVP_chacha20() ?

This is one of the *identified* things which are missing in addition to
TLS_AES_128_CCM_SHA256 which cannot be enabled. This does not mean there
is no others which are not identified yet.