Does HTTP TRACE method do the same thing as curl --trace?
Stephen said at Does `curl -v` show the complete HTTP request including the body?:
the TRACE HTTP method affects the server’s behaviour, not the client’s (curl’s)
As far as what curl receives is concerned, HTTP TRACE method and curl --trace seem to provide the same information to curl. Correct? If not, what differences are between the information provided by HTTP TRACE method and information provided by curl --trace?
If considering how the information is collected, do the two ways do the same thing to collect the information?
Thanks.