What is the Transport Protocol Used in wget?

iplayer4tcptransport-protocoludp

wget is basically to retrieve HTTP contents from web servers. I want to know if wget is based on TCP or UDP? I did a search but some resources said it is TCP while others said UDP.

Best Answer

By default, wget uses HTTP to retrieve files. Which means wget uses TCP/80... unless you specify HTTPS, in which case it uses TCP/443.

Related Topic