The libpyfcgi python module is defined in files : PyFCGI/src/python_pyfcgi.c and PyFCGI/include/python_pyfcgi.h
The module contains Python functions :
libpyfcgi.start_response() given as 2nd argument to PEP333 applications
libpyfcgi.write_body() returned by the start_response() function
But the python_pyfcgi.* files contains also pure C functions for worker<->fcgi interactions : function to write headers, function to parse/handle headers given by python app, function to generate default headers, etc.
__see #8__
The libpyfcgi python module is defined in files : PyFCGI/src/python_pyfcgi.c and PyFCGI/include/python_pyfcgi.h
The module contains Python functions :
- libpyfcgi.start_response() given as 2nd argument to PEP333 applications
- libpyfcgi.write_body() returned by the start_response() function
But the python_pyfcgi.* files contains also pure C functions for worker<->fcgi interactions : function to write headers, function to parse/handle headers given by python app, function to generate default headers, etc.
see #8
The libpyfcgi python module is defined in files : PyFCGI/src/python_pyfcgi.c and PyFCGI/include/python_pyfcgi.h
The module contains Python functions :
But the python_pyfcgi.* files contains also pure C functions for worker<->fcgi interactions : function to write headers, function to parse/handle headers given by python app, function to generate default headers, etc.