9.4 libssh blocking and infinite loop problem
9.5 Cygwin: "WARNING: UNPROTECTED PRIVATE KEY FILE!"
- 10. SOCKS
+ 10. Connection
+ 10.1 --interface with link-scoped IPv6 address
11. Internals
11.1 gssapi library name + version is missing in curl_version_info()
https://github.com/curl/curl/issues/11244
-10. SOCKS
+10. Connection
+
+10.1 --interface with link-scoped IPv6 address
+
+ When you give the `--interface` option telling curl to use a specific
+ interface for its outgoing traffic in combination with a IPv6 address in the
+ URL that uses a link-local scope, curl might pick the wrong address from the
+ named interface and the subsequent transfer fails.
+
+ Example command line:
+
+ curl --interface eth0 'http://[fe80:928d:xxff:fexx:xxxx]/'
+
+ The fact that the given IP address is link-scoped should probably be used as
+ input to somehow make curl make a better choice for this.
+
+ https://github.com/curl/curl/issues/14782
11. Internals