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

« back to all changes in this revision

Viewing changes to src/include/filterobject.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Python Modules Team, Sandro Tosi
  • Date: 2008-08-11 00:00:01 UTC
  • mfrom: (1.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080811000001-fuo2p4nmf23k5yen
Tags: 3.3.1-5
[ Sandro Tosi ]
* debian/po/eu.po
  - updated Basque debconf translation; thanks to Xabier Bilbao;
    Closes: #492409

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *
19
19
 * filterobject.h 
20
20
 *
21
 
 * $Id: filterobject.h 106619 2004-11-25 22:10:52Z nd $
 
21
 * $Id: filterobject.h 426882 2006-07-30 10:27:00Z grahamd $
22
22
 *
23
23
 */
24
24
 
48
48
        int bytes_written;
49
49
 
50
50
        char *handler;
 
51
        PyObject *callable;
51
52
        char *dir;
 
53
        hl_entry *parent;
52
54
 
53
55
        requestobject *request_obj;
54
56
 
61
63
    extern DL_IMPORT(PyObject *) 
62
64
        MpFilter_FromFilter Py_PROTO((ap_filter_t *f, apr_bucket_brigade *bb_in, 
63
65
                                      int is_input, ap_input_mode_t mode, 
64
 
                                      apr_size_t readbytes, char *hadler, char *dir));
 
66
                                      apr_size_t readbytes, char *handler,
 
67
                                      PyObject *callable, char *dir,
 
68
                                      hl_entry *parent));
65
69
 
66
70
#ifdef __cplusplus
67
71
}