We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd81e9 commit 7e67f96Copy full SHA for 7e67f96
README.md
@@ -6,12 +6,11 @@ Intended to be able to provide an HTTP<>HTTP3 reverse proxy. We are not there
6
yet.
7
8
```lisp
9
-
10
;; Load library.
11
-(ql:quickload :lsquic)
+(ql:quickload :http3)
12
13
;; Make an HTTP3 client to google.
14
-(let ((http3-client (make-instance 'lsquic:http3-client :quic-version "Q050" :host "google.com")))
15
- ;; Watch that things don't completely explode!
16
- (lsquic:quic-connect http3-client))
+(let ((client (make-instance 'lsquic:client :quic-version "Q050" :host "google.com")))
+ (http3:connect client)
+ (http3:make-get-request client :path "/"))
17
```
0 commit comments