Skip to content

Commit 7e67f96

Browse files
committed
update README
1 parent 5cd81e9 commit 7e67f96

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ Intended to be able to provide an HTTP<>HTTP3 reverse proxy. We are not there
66
yet.
77

88
```lisp
9-
109
;; Load library.
11-
(ql:quickload :lsquic)
10+
(ql:quickload :http3)
1211
1312
;; 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))
13+
(let ((client (make-instance 'lsquic:client :quic-version "Q050" :host "google.com")))
14+
(http3:connect client)
15+
(http3:make-get-request client :path "/"))
1716
```

0 commit comments

Comments
 (0)