Is there a way to specify, in a HTTP header, the transfer rate of the content?
+2
A:
Unless you're writing your own HTTP server, no.
But you can throttle the connection in the client, by reading from the socket only at a certain speed. Due to buffering at the server, network, and your client, the initial part of the file will be sent as fast as the server and network can support. But once all buffers are filled up, the connection speed will be limited by your read speed.
Wim
2010-03-21 17:49:17