Hi everyone!
I am investigating the feasibility of http3 connections
Refer to this WWDC video https://developer.apple.com/videos/play/wwdc2021/10094/ and the sample code TN3102: HTTP/3 in your app | Apple Developer Documentation
Does URLRequest
automatically connect as http3 if the server already supports the following settings?
IN HTTPS alpn="h3,h2"
Alt-Svc: h3=":443"; ma=2592000
After testing, I can only connect as http3 if I enable assumesHTTP3Capable
on URLRequest
. Is assumesHTTP3Capable
required or am I missing something?