First type the curl command into your shell and press enter. What exactly happens then? Daniel takes you through a step-by-step from the command line tool, into libcurl, URLs, DNS, TCP, TLS etc. From start to end.
Пікірлер: 9
@Nowfel-w1i14 күн бұрын
Thanks a lot.
@EkShunya17 күн бұрын
its surprising your channel is not crazy famous
@sillybuttons92516 күн бұрын
I enjoyed the Q&A
@swapniladsul236417 күн бұрын
Great explanation!
@rocketsamiyou16 күн бұрын
Thank you Daniel.
@KambizAsadzadeh17 күн бұрын
Thanks for this Daniel!
@ehza17 күн бұрын
thanks
@DF-ss5ep12 күн бұрын
If I could ask anything, it would be if there are big differences in how curl works and how browsers and other things do HTTP requests. Of course, at a high level, they all open a connection, establish TLS, and talk HTTP, but do they also use for example that algorithm for trying various IP addresses?
@DanielStenberg12 күн бұрын
In general and from the broader view, browsers work the same way as curl. They too do "happy eyeballs" to connect to new hosts etc. A big difference is that browsers tend to run for longer periods of time so they can take better advantage of caches etc, keep state and "remember" things between subsequent attempts and fetches.