You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2004/02/16 19:59:15 UTC

cvs commit: httpd-python/src requestobject.c

grisha      2004/02/16 10:59:15

  Modified:    src      requestobject.c
  Log:
  Assbackwards is now writeable.
  
  Revision  Changes    Path
  1.56      +2 -2      httpd-python/src/requestobject.c
  
  Index: requestobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/requestobject.c,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- requestobject.c	11 Dec 2003 03:41:30 -0000	1.55
  +++ requestobject.c	16 Feb 2004 18:59:15 -0000	1.56
  @@ -1279,7 +1279,7 @@
       {"prev",       (getter)getmakeobj, NULL, "If redirected, pointer to the from request", "prev"},
       {"main",       (getter)getmakeobj, NULL, "If subrequest, pointer to the main request", "main"},
       {"the_request", (getter)getreq_recmbr, NULL, "First line of request", "the_request"},
  -    {"assbackwards", (getter)getreq_recmbr, NULL, "HTTP/0.9 \"simple\" request", "assbackwards"},
  +    {"assbackwards", (getter)getreq_recmbr, (setter)setreq_recmbr, "HTTP/0.9 \"simple\" request", "assbackwards"},
       {"proxyreq",     (getter)getreq_recmbr, NULL, "A proxy request: one of apache.PROXYREQ_* values", "proxyreq"},
       {"header_only",  (getter)getreq_recmbr, NULL, "HEAD request, as oppsed to GET", "header_only"},
       {"protocol",     (getter)getreq_recmbr, NULL, "Protocol as given to us, or HTTP/0.9", "protocol"},