-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
curl verbose output does not show handshake information #6783
Comments
Here is an example output when the issue occurs
Notice where the TLS handshake information are missing |
I believe this is to be expected when you use BoringSSL: it doesn't provide the $ cd $BORINGSSL
$ grep -r SSL_CTRL_SET_MSG_CALLBACK
openssl/ssl.h:#define SSL_CTRL_SET_MSG_CALLBACK doesnt_exist
openssl/ssl.h:#define SSL_CTRL_SET_MSG_CALLBACK_ARG doesnt_exist |
OK. I will recompile with GnuTLS+nghttp3+ngtcp2 and see if the issue persists. |
Just note that then you can't use quiche... |
Oops. Maybe you can... they can probably coexist |
|
@bagder I experienced the very same issue as #6493 The |
I don't see any handshake output in Windows. The first message I see is after the handshake is over and the request has been sent,
|
Wow, yes now I spotted it too! PR coming up |
Otherwise, the transfer will be NULL in the trace function when the early handshake details arrive and then curl won't show them. Reported-by: David Hu Fixes #6783
Thank you SO much Daniel! |
I did this
I have compiled
curl
from source as of Mar 24 2021 GMT. I tried to produce verbose output withcurl -v <url>
however the output only shows "Trying......" "Connecting "and "ALPN......" instead of "Successfully set certificate verify locations...... CAFile...... CAPath......" and "TLSv1.3, TLS handshake, Client Hello (1):"I expected the following
Showing verbose output including handshake information before the HTTP request.
However, the verbose output jumps straight from "Connecting......" to
GET / HTTP/2
curl/libcurl version
curl 7.76.0-DEV (x86_64-pc-linux-gnu) libcurl/7.76.0-DEV
[curl -V output]
operating system
Linux fedora 5.11.8-300.fc34.x86_64 #1 SMP Mon Mar 22 01:33:25 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: