summaryrefslogtreecommitdiff
path: root/sapi/milter/php_milter.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-2/+2
|
* - Year++Felipe Pena2012-01-011-2/+2
|
* - Added missing PHP_FE_END/ZEND_FE_ENDFelipe Pena2011-08-061-1/+1
|
* - Year++Felipe Pena2011-01-011-2/+2
|
* * implement new output API, fixing some bugs and implementing some feature Michael Wallner2010-05-311-7/+5
| | | | | | | | | | | requests--let's see what I can dig out of the bugtracker for NEWS-- and while crossing the road: * implemented new zlib API * fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?) Thanks to Jani and Felipe for pioneering.
* - Reverted r296062 and r296065Jani Taskinen2010-03-121-6/+8
|
* MFH: Improved / fixed output buffering (Michael Wallner)Jani Taskinen2010-03-111-8/+6
|
* - Fixed bug #51237 (milter SAPI crash on startup)Felipe Pena2010-03-081-1/+11
| | | | | patch by: igmar at palsenberg dot com
* - Fix php-milter sample usage (-r option doesn't exists here)Felipe Pena2010-03-081-2/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-2/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-2/+2
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-9/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+9
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-9/+0
|
* MFHJani Taskinen2008-08-131-7/+1
|
* - Added arginfoFelipe Pena2008-07-161-9/+60
|
* Add new empty child terminate sapi hook to the rest of the sapisRasmus Lerdorf2008-03-181-0/+1
|
* Implemented concept of "delayed early binding" that allows opcode caches to ↵Dmitry Stogov2008-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo-code explains how it should be used in opcode cache. function cache_compile_file($filename) { if (!is_cached($filename)) { ... orig_compiler_options = CG(compiler_optins); CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES | ZEND_COMPILE_DELAYED_BINDING; $op_array = orig_compile_file($filename); CG(compiler_options) = orig_copiler_options; ... } else { $op_array = restore_from_cache($filename); } zend_do_delayed_early_binding($op_array); }
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-2/+2
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* MFH: fix #40392 (memory leaks in PHP milter SAPI)Antony Dovgal2007-03-281-52/+77
|
* use RETURN_* instead of RETVAL_* and fix #40083Antony Dovgal2007-01-101-14/+14
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-2/+2
|
* bump year and license versionfoobar2006-01-011-4/+4
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* - 2004 -> 2005foobar2005-08-031-2/+2
|
* Add the new request_time sapi struct entry to all the sapis. Some of theseRasmus Lerdorf2004-12-201-0/+1
| | | | | | | may have ways of getting the request time without the extra syscall, but for now let's just make sure we don't crash and people will eventually fill these in where applicable.
* C++ comments.Ilia Alshanetsky2004-04-291-1/+1
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-3/+3
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Bump year.Sebastian Bergmann2002-12-311-2/+2
|
* Correct the punctuation of these error messages.Jon Parise2002-12-021-3/+3
|
* rename callbacks to fit the original nameHarald Radi2002-12-011-3/+3
|
* if the api functions are called, check if they're valid in that contextHarald Radi2002-12-011-91/+315
| | | | | | | reopen file per request, so milter doesn't hang. PHPA or APC can be used to speed the milter up added a milter_init callback to init the milter before it is registered added protos to make sniper happy
* first working versionHarald Radi2002-12-011-107/+106
|
* it finally compiles nowHarald Radi2002-12-011-33/+33
| | | | | tests will follow tomorrow
* fix buildHarald Radi2002-12-011-66/+59
|
* added remaining functions, still untested, still having problems with config.m4Harald Radi2002-12-011-15/+116
|
* Sendmail Milter SAPIHarald Radi2002-12-011-0/+822
initial version