EthernetClient - What if I don't read what's available?

Thanks, Juraj, that makes a lot of sense. A simple

if(client.available()){
    client.stop();
  }

at the end of the loop() is a quicker than reading a few more times, and does clear the buffer according to my experiments.