I am working on a very simple web server.
Till now I haven't found how to disable the annoying requests for favicon.ico from chrome.
So I was thinking what's the shortest/fastest answer to such a request. Is it ok just to disconnect after the request for favicon.ico is identified. Or is that considered impolite behaviour and should be avoided?
Alternativly I would send a 404 message. Do I need to send a text as well or do I have to send at least the information "content-length: 0" or can I even leave this?
Thank you!
favicon.icospecifically: most web servers handle it as any other URL (e.g. 404). – Basile Starynkevitch Sep 20 '12 at 7:42