Changeset 12656


Ignore:
Timestamp:
05/06/10 20:15:26 (14 years ago)
Author:
Mark Evenson
Message:

Properly implement HTTP/1.1 HEAD requests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/util/HttpHead.java

    r12611 r12656  
    9393            }
    9494
    95             String head = "HEAD " + url + " HTTP/1.1";
     95            String head = "HEAD " + url.getPath() + " HTTP/1.1";
    9696            out.println(head);
     97            out.println("Host: " + url.getAuthority());
    9798            out.println("Connection: close");
    9899            out.println("");
Note: See TracChangeset for help on using the changeset viewer.