On Thu, 25 Oct 2001, Jason Nicholls wrote:
> print "GET / HTTP/1.0\n"
> print "host: www.badlinks.com\n"
> print "\n\n"
You don't need the 3rd \n" after the host: header
In fact, it may even confuse some poorly written webservers.. :)
The 3rd line can be
print "\n"
- Matt