Skip to content

Commit

Permalink
Consistent case for H2C, link and brief description
Browse files Browse the repository at this point in the history
  • Loading branch information
jhump authored Oct 5, 2023
1 parent 0642ec5 commit 90b62af
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit 90b62af

Please sign in to comment.