gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 45/220: altsvc: with quiche, use the quiche h3 alpn


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 45/220: altsvc: with quiche, use the quiche h3 alpn string
Date: Thu, 12 Sep 2019 17:26:45 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 0711153b4609ee0a45de5c61a86e0c3313cbc2dd
Author: Daniel Stenberg <address@hidden>
AuthorDate: Fri Aug 2 14:27:26 2019 +0200

    altsvc: with quiche, use the quiche h3 alpn string
    
    Closes #4183
---
 lib/altsvc.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/lib/altsvc.c b/lib/altsvc.c
index e4d3ea605..0e9471999 100644
--- a/lib/altsvc.c
+++ b/lib/altsvc.c
@@ -56,8 +56,13 @@ static enum alpnid alpn2alpnid(char *name)
     return ALPN_h2;
   if(strcasecompare(name, "h2c"))
     return ALPN_h2c;
+#ifdef USE_QUICHE
+  if(strcasecompare(name, "h3-20"))
+    return ALPN_h3;
+#else
   if(strcasecompare(name, "h3"))
     return ALPN_h3;
+#endif
   return ALPN_none; /* unknown, probably rubbish input */
 }
 
@@ -72,7 +77,11 @@ const char *Curl_alpnid2str(enum alpnid id)
   case ALPN_h2c:
     return "h2c";
   case ALPN_h3:
+#ifdef USE_QUICHE
+    return "h3-20";
+#else
     return "h3";
+#endif
   default:
     return ""; /* bad */
   }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]