summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* #if !HAVE_FOO -> #ifndef HAVE_FOOStig Bakken1999-09-242-2/+2
|
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-201-1/+0
| | | | | | and not in PHP. I.e. strlen(), each(), error_reporting(), count(), get_class_name().
* There is no reason to define malloc() to xmalloc() in this context.Sascha Schumann1999-09-181-16/+1
|
* `0' flag ignored with precision specifier and `X' formatSascha Schumann1999-09-171-1/+1
|
* - Added support for unknown POST content types (Zeev)Zeev Suraski1999-09-166-13/+64
| | | | | - Introduce the convert_to_*_ex() API in strlen()
* *** empty log message ***Zeev Suraski1999-09-161-0/+6
|
* Generalize SAPI a bitZeev Suraski1999-09-161-0/+14
|
* HASH_OF is usable enough (i hate duplicating macros all over the place)Thies C. Arntzen1999-09-151-0/+1
|
* Clean up the strlcat/strlcpy checks.Stig Bakken1999-09-151-2/+2
|
* - First go at using strlcat().Andi Gutmans1999-09-141-12/+7
|
* - Support strlcpy/strlcat in windows.Andi Gutmans1999-09-141-0/+6
|
* Add strlcpy/strlcat to the build processAndi Gutmans1999-09-143-0/+155
|
* i'm sure this was left-over debugging code!Thies C. Arntzen1999-09-141-4/+0
|
* - X-* is probably more standard.Andi Gutmans1999-09-131-1/+1
|
* added Metaphone supportThies C. Arntzen1999-09-131-0/+2
|
* - Rewrote the GET/POST/Cookie data reader to support multi-dimensionalZeev Suraski1999-09-121-1/+1
| | | | | | | arrays! (Zeev) This still needs a lot of more testing, but it seems to work more or less.
* Add PHP-Version header in IISZeev Suraski1999-09-121-1/+2
|
* That's important enough to be cachedZeev Suraski1999-09-122-5/+7
|
* Time to do that - rename the output layer prefixZeev Suraski1999-09-122-14/+14
|
* Use OnUpdateBool for Boolean entries.Andrey Hristov1999-09-111-1/+1
|
* Rename allow_builtin_links to expose_phpZeev Suraski1999-09-111-2/+2
|
* More cleanupZeev Suraski1999-09-111-11/+1
|
* - Seriously optimize and clean php_parse_gpc_data()Zeev Suraski1999-09-112-0/+2
| | | | | | - Added gpc_globals directive to turn global definitions of GPC variables on/off (untested)
* Cleanups & optimizationsZeev Suraski1999-09-112-11/+11
|
* CleanupsZeev Suraski1999-09-111-1/+1
|
* - Fix warnings and win32 compileAndi Gutmans1999-09-071-1/+1
|
* A couple of BoundsChecker fixesZeev Suraski1999-09-061-1/+1
|
* - Should fix Win32 compileAndi Gutmans1999-09-061-1/+1
|
* fix warningSascha Schumann1999-09-051-1/+1
|
* - Should fix short_tags and co. problem.Andi Gutmans1999-09-053-14/+33
|
* - Make Win32 compile once again.Andi Gutmans1999-09-051-1/+1
|
* - Make dir functions compile in Win32Andi Gutmans1999-09-051-0/+1
| | | | | - Fix too early memory manager initialization (For you Thies)
* work around gcc bug, otherwise compiler would die withSascha Schumann1999-09-051-1/+1
| | | | | | | toplev.c:2261: Internal compiler error in function float_signal in basic_functions.c
* - php_error(E_ERROR,...) won't ever return so change the connection_statusAndi Gutmans1999-09-051-1/+1
| | | | | before it is called.
* Forgot oneRasmus Lerdorf1999-09-041-1/+1
|
* This was actually intentional... put it back in and improveZeev Suraski1999-09-041-1/+1
|
* CleanupsRasmus Lerdorf1999-09-042-16/+16
| | | | | | | What the heck was that dangling (c) for in the PUTC macros? Were they supposed to serve some sort of purpose, because I sure don't see one for them.
* Catch a timeout and add user-level interface for connection handlingRasmus Lerdorf1999-09-041-0/+1
|
* Might as well bail as soon as we know we should since this is nowRasmus Lerdorf1999-09-041-3/+3
| | | | | | | possible. We still need to set our connection status bit field so a shutdown function can figure out if a script was terminated due to an abort, timeout or finished normally.
* First part of the connection_status work. No user-callable functionsRasmus Lerdorf1999-09-043-3/+17
| | | | | | | | | | | yet. That is coming next. Have also only done Apache and CGI so far. Will have to crack open my ISAPI book to do that one. Also changed the SAPI output functions to return an int. We'll check the connection status inside each one, but we might need the return code at some other level and I don't see a good reason for just tossing these return codes.
* *** empty log message ***Zeev Suraski1999-09-041-0/+3
|
* Add global startup/shutdown functions in Win32 version as wellSascha Schumann1999-09-031-0/+32
|
* Add prototypes for new functions in internal_functions.c.inSascha Schumann1999-09-031-1/+3
|
* - add global startup/shutdown handlersSascha Schumann1999-09-034-9/+46
| | | | | | | | | | - improve genif.sh to also consider all header files for inclusion (checks for phpext_) - use vsnprintf in main.c to avoid buffer overflows - improve sessions's mm module to cope better with OOM situations within the shared memory segment - fix typo wrt session.auto_start
* Version updateZeev Suraski1999-09-031-1/+1
|
* - Fixed several problems with output buffering and HEAD requests (Zeev)Zeev Suraski1999-09-031-1/+1
| | | | | - Fixed HTTP Status code issue with ISAPI module (Zeev)
* - Add sessions module to standard win32 build.Andi Gutmans1999-09-012-2/+4
|
* ext/lcg -> ext/standard in various placesStig Bakken1999-08-311-1/+1
|
* fix for bug #2165Stig Bakken1999-08-311-2/+4
|
* moved lcg stuff to ext/standardStig Bakken1999-08-291-0/+2
|