summaryrefslogtreecommitdiff
path: root/sapi/aolserver/aolserver.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: static before constJani Taskinen2009-12-081-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-1/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+1
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-1/+0
|
* - Added arginfoFelipe Pena2008-07-161-1/+7
|
* Add new empty child terminate sapi hook to the rest of the sapisRasmus Lerdorf2008-03-181-0/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fixed bug #33520 (crash if safe_mode is on and session.save_path is changed)Dmitry Stogov2005-07-041-1/+1
|
* Fix for bug #32263Rasmus Lerdorf2005-03-141-0/+2
| | | | | | | | | This adds proto_num to request_info. It is defaulted to HTTP 1.0 (1000) such that it has a valid value even if the underlying sapi doesn't set it correctly. It is then used to determine if a 302 or a 303 should be sent on a Location redirect. Any non GET/HEAD HTTP 1.1 redirect will get a 303 instead of a 302 to be compatible with the HTTP spec.
* 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.
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-3/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - Made the STANDARD_SAPI_MODULE_PROPERTIES be what it says it is.foobar2002-11-261-5/+0
|
* fix phpinfo() output for better browser BCColin Viebrock2002-09-261-1/+1
|
* Change phpinfo() to use CSS styling instead of HTML code.Colin Viebrock2002-09-191-1/+1
| | | | | | | | | | It doesn't render as nicely as it used to on older browsers, but it does result in smaller files, and opens the door to using your own CSS to style it differently. There is a patch to Zend/zend_ini.c, but I don't have enough Karma, so Derick has the patch.
* another startup initialization fix - only ISAPI and CGI SAPI's tested,Zeev Suraski2002-09-181-2/+1
| | | | | | minor compile buglets might occur in other SAPIs, but should be trivial to fix...
* Fix code which makes wrong assumptions about the return value of snprintf.Sascha Schumann2002-06-261-2/+2
| | | | | The AOLserver module did not use the return value, so simply drop it.
* Add missing elementZeev Suraski2002-05-111-0/+2
|
* Use {NULL, NULL, NULL} to terminate function entry.Yasuo Ohgaki2002-02-281-1/+1
| | | | | # It does not fix any bugs, since {0} works also.
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* * fix module struct in rest of sapi modulesStig Bakken2001-10-121-0/+2
|
* Undo Z_ subst for sapi and ext/yazJeroen van Wolffelaar2001-09-271-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* TSRMLS fixesDaniel Beulshausen2001-08-141-13/+5
|
* more tsrm cleanupSascha Schumann2001-08-051-2/+1
|
* further tsrm cleanupSascha Schumann2001-08-051-3/+0
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-1/+1
| | | | | - whitespace fixes
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-32/+25
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-6/+6
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Try harder to push data through the wire.Sascha Schumann2001-01-151-5/+12
| | | | | | I just learned that the AOLserver module will be used for a 100k users webmail service. Wheee!
* Many patches. I hope I remember them all:Zeev Suraski2001-01-021-4/+4
| | | | | | | | | - Make sapi_module available to external modules (PHPAPI) - Make the php.ini path reported in phpinfo() always point to real full path of the php.ini file - Optimized the ISAPI module not to read unnecessary server variables and read necessary variables at most once.
* Update SAPI modules to interface with the new TSRM.Zeev Suraski2000-11-181-1/+1
| | | | | Enable thread-safety memory debugging in ISAPI when in debug mode
* strdup private AOLserver data before inserting it into SAPI's request_info.Sascha Schumann2000-11-111-7/+9
|
* Add/unify aborted connection handlingSascha Schumann2000-10-291-0/+3
|
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-291-1/+1
|
* Restore the headers_only test to the centralized SAPI startup. If ↵Zeev Suraski2000-09-081-5/+0
| | | | | | | necessary, it can be overriden in the activate() callback.
* Missed a couple of center attributesRasmus Lerdorf2000-08-281-1/+1
|