Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.21 KB

File metadata and controls

22 lines (17 loc) · 1.21 KB

Resources


// http.zig library basic REST -> JSON-RPC request // response to the comments in the Varnish Discord // work on EPF project proposal // http/1.1 is fine because there are no other links to discover. // - https://www.digitalocean.com/community/tutorials/http-1-1-vs-http-2-what-s-the-difference // mentions that http/2 vs http/1.1 was that with 1.1 any other resources required to // completed the downloaded page (e.g. images, video etc) are given as links and not inline // content so further requests have to be made but in the rest wrappers case it's just an // api so there will be no other images, videos etc thus http/1.1 is fine. // - also mention no http/2 because of the downgrade attacks mentioned in: https://richiejp.com/barely-http2-zig // but competent administrators can deploy if they wish behind a proxy downgrading to http/1.1