~ubuntu-branches/ubuntu/gutsy/libapache2-mod-python/gutsy

« back to all changes in this revision

Viewing changes to src/include/requestobject.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-07-07 13:18:35 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060707131835-zfp1vupanjj2e77y
Tags: 3.2.8-1ubuntu1
* Merge to Debian unstable.
* Remaining Ubuntu change: debian/{control,rules}: Drop python 2.3 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *
19
19
 * requestobject.h
20
20
 *
21
 
 * $Id: requestobject.h 102649 2004-02-16 19:47:28Z grisha $
 
21
 * $Id: requestobject.h 190550 2005-06-14 02:54:36Z jgallacher $
22
22
 *
23
23
 */
24
24
 
50
50
        char           * rbuff;       /* read bufer */
51
51
        int              rbuff_len;   /* read buffer size */
52
52
        int              rbuff_pos;   /* position into the buffer */
 
53
        PyObject       * session;
 
54
        
53
55
    } requestobject;
54
56
 
55
57
    extern DL_IMPORT(PyTypeObject) MpRequest_Type;