You will do ok with that as long as you aren't sending much. You may have problems with multiple packets tho. I don't use that code.
Mine is more like this. This waits for the server to signal it is finished sending packets by closing the connection. This request should send the "Connection: close" parameter to insure the server does that. Otherwise, on multiple packet transmissions, you will need to determine when you have it all, or the network is slow, and the next packet hasn't gotten there yet.
while(client.connected())
{
while(client.available())
{
char c = client.read();
Serial.write(c);
}
}
client.stop();
It is up to you which you use.
edit: My bad, I forgot the client.stop().