Question: GEI the data for a large tile Your first program was probably written with a single read or recv command. This works fine for very


GEI the data for a large tile Your first program was probably written with a single read or recv command. This works fine for very small files, but would not be able to download anything larger. For this next part, you will write a socket program to receive arbitrarily large files. Your program will make a socket connection to the host: "gaia.cs.umass.edu" and send the GET request for the URI: "/wireshark-labs/HTTP-wireshark-file3.html". To do this, you will send the following HTTP-compliant GET request to the server exactly as below: "GET /wireshark-labs/HTTP-wireshark-file3.htmI HTTP/1.1|rInHost:gaia.cs.umass.edulrIn|rln" There is no end-of-transmission (EOT) with sockets, so knowing when you've received all the data can be difficult. Fortunately for this project, the gaia.cs.umass.edu server will close the connection after sending its data, so the easy thing to do is detect when recv or read return
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
