Switch to FSF GCC 4.7.
[nethome.git] / bin / httpgetdumb
index 9c6d83c..3a78236 100755 (executable)
@@ -13,7 +13,7 @@ use constant DEFAULT_PORT=>80;
 use constant BUFFER_LENGTH=>0x1000;
 
 my %opts;
-getopts "hH",\%opts or die "getopts()";
+getopts "xhH",\%opts or die "getopts()";
 @ARGV==1 && $ARGV[0]=~m#^http://(([^/:]+)(?::(\d+))?)(/.*)$#
                or die "Syntax: $0 [-hH] http://hostname/pathname";
 my($hostport,$host,$port,$path)=($1,$2,$3,$4);
@@ -30,6 +30,7 @@ my %header=(
        "Host"=>$hostport,
        "X-httpgetdumb"=>'$Id$',
        );
+$header{"Accept"}="application/xhtml+xml" if $opts{"x"};
 while (my($key,$val)=each(%header)) {
        print SOCK "$key: $val\r\n";
        }