You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by ra...@bellglobal.com on 1997/12/12 17:38:15 UTC

HTTP/1.1 100 Continue ?

Could someone explain this 100 Continue header that is sent from the
should_client_block() function in http_protocol.h:

    if (r->proto_num >= HTTP_VERSION(1,1)) { /* sending 100 Continue interim
response */
        bvputs(r->connection->client,
               SERVER_PROTOCOL, " ", status_lines[0], "\015\012\015\012",
               NULL);
        bflush(r->connection->client);
    }

With Internet Explorer 4.0 I keep getting this header showing up at the
top of a page on a POST.  I guess IE4 doesn't know what to do with this
header?  I think I am calling should_client_block() correctly.

-Rasmus