The proper HTTP status for “too many connections?”

connectionhttphttp-server

I am working on an HTTP server which is supposed to only allow a certain amount of connections per user. How do I gracefully tell the user that more than n connections are not permitted. I tried answering the n+1th request with a 403 but apparently that kills the whole download. (At least with DownThemAll!)

Best Answer

429: Too Many Requests

seems to be the one.