Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consistent case for H2C in README; add link and brief description #52

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
provides client-side load balancing for `net/http` clients. By default,
clients are designed for server-to-server and RPC workloads:

* They support HTTP/1.1, HTTP/2, and h2c.
* They support HTTP/1.1, HTTP/2, and [H2C](https://en.wikipedia.org/wiki/HTTP/2#Encryption).
* They periodically re-resolve names using DNS.
* They use a round-robin load balancing policy.

Expand Down Expand Up @@ -76,7 +76,8 @@ func main() {
}
```

It's also easy to use H2C. Just use the `h2c` scheme in your URLs instead of `http`:
If you know the server supports HTTP/2 without TLS (HTTP/2 over cleartext, or H2C for short), use
the `h2c` scheme in your URLs instead of `http`:

```go
pingClient := pingv1connect.NewPingServiceClient(
Expand Down