~ubuntu-branches/ubuntu/karmic/libapache2-mod-python/karmic-updates

« back to all changes in this revision

Viewing changes to src/include/requestobject.h

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ozarowski
  • Date: 2007-02-21 18:24:29 UTC
  • mfrom: (1.1.8 feisty)
  • Revision ID: james.westby@ubuntu.com-20070221182429-9okop7e0qpi24l85
Tags: 3.2.10-4
* Added XS-Vcs-Svn field
* Removed "db_purge" part from libapache2-mod-python.postrm
  (dh_installdebconf is generating a rule that will not fail if debconf is
  already removed)
* Added initial Spanish debconf translation from Manuel Porras Peralta.
  (closes: #411235)
* Added initial Portuguese debconf translation from Pedro Ribeiro.
  (closes: #411742)
* Added initial Galician debconf translation from Jacobo Tarrio.
  (closes: #411831)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *
19
19
 * requestobject.h
20
20
 *
21
 
 * $Id: requestobject.h,v 1.16 2004/02/16 19:47:28 grisha Exp $
 
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;