~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/HttpRequest.cc

  • Committer: Christos Tsantilas
  • Date: 2009-02-18 22:18:35 UTC
  • mfrom: (9294.1.215 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090218221835-lfxxe3bs8uhu0b1h
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
298
298
{
299
299
    assert(p);
300
300
    /* pack request-line */
301
 
    packerPrintf(p, "%s %.*s HTTP/1.0\r\n",
302
 
                 RequestMethodStr(method), urlpath.size(), urlpath.rawBuf());
 
301
    packerPrintf(p, "%s " SQUIDSTRINGPH " HTTP/1.0\r\n",
 
302
                 RequestMethodStr(method), SQUIDSTRINGPRINT(urlpath));
303
303
    /* headers */
304
304
    header.packInto(p);
305
305
    /* trailer */