mirror of
https://github.com/curl/curl.git
synced 2026-07-24 13:57:16 +03:00
tidy-up: URLs (cont.) and mdlinkcheck
- add missing ending slashes.
To avoid duplicates and to use canonical URLs.
- reapply lost updates.
Follow-up to 2ae983bf4e #19879
- mdlinkcheck: include the `include` directory.
- mdlinkcheck: show unused whitelist items.
- mdlinkcheck: improve debug output.
- mdlinkcheck: delete redundant whitelist items.
- examples/simplessl: lowercase the protocol part.
- BINDINGS: replace one remaining HTTP URL with HTTPS.
Issue: https://github.com/pycurl/pycurl/issues/892
- BINDINGS: fix a broken link.
- BINDINGS: follow a refresh content redirect.
- KNOWN_BUGS: whitespace.
Closes #19911
This commit is contained in:
parent
00f06127ce
commit
d9d2e339ce
16 changed files with 98 additions and 91 deletions
|
|
@ -233,7 +233,7 @@ Users of `curl` may activate them by adding the name of the filter type to the
|
|||
of an HTTP/2 request, invoke curl with:
|
||||
|
||||
```
|
||||
> curl -v --trace-config ids,time,http/2 https://curl.se
|
||||
> curl -v --trace-config ids,time,http/2 https://curl.se/
|
||||
```
|
||||
|
||||
Which gives you trace output with time information, transfer+connection ids
|
||||
|
|
@ -260,7 +260,7 @@ into IPv4 and IPv6 and makes parallel attempts. The connection filter chain
|
|||
looks like this:
|
||||
|
||||
```
|
||||
* create connection for http://curl.se
|
||||
* create connection for http://curl.se/
|
||||
conn[curl.se] --> SETUP[TCP] --> HAPPY-EYEBALLS --> NULL
|
||||
* start connect
|
||||
conn[curl.se] --> SETUP[TCP] --> HAPPY-EYEBALLS --> NULL
|
||||
|
|
@ -276,7 +276,7 @@ The modular design of connection filters and that we can plug them into each oth
|
|||
The `HAPPY-EYEBALLS` on the other hand stays focused on its side of the problem. We can use it also to make other type of connection by just giving it another filter type to try to have happy eyeballing for QUIC:
|
||||
|
||||
```
|
||||
* create connection for --http3-only https://curl.se
|
||||
* create connection for --http3-only https://curl.se/
|
||||
conn[curl.se] --> SETUP[QUIC] --> HAPPY-EYEBALLS --> NULL
|
||||
* start connect
|
||||
conn[curl.se] --> SETUP[QUIC] --> HAPPY-EYEBALLS --> NULL
|
||||
|
|
@ -292,7 +292,7 @@ type that is used for `--http3` when **both** HTTP/3 and HTTP/2 or HTTP/1.1
|
|||
shall be attempted:
|
||||
|
||||
```
|
||||
* create connection for --http3 https://curl.se
|
||||
* create connection for --http3 https://curl.se/
|
||||
conn[curl.se] --> HTTPS-CONNECT --> NULL
|
||||
* start connect
|
||||
conn[curl.se] --> HTTPS-CONNECT --> NULL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue