History log of /PHP-7.3/ext/zlib/zlib.c (Results 201 – 225 of 330)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 7b59a131 27-Apr-2002 Thies C. Arntzen

@ - If possible set Content-Length header in zlib.output_compression mode. (thies)


Revision tags: php-4.2.0
# 928bae9c 19-Apr-2002 Wez Furlong

Make scheme part decoding rfc2396 compliant.
Change zlib:// and bzip2:// to compress.zlib:// and compress.bzip2://
Tidy up old socket/network code/comments.


# b10b24d5 16-Apr-2002 Wez Furlong

Always initialize wrappers, regardless of PG(allow_url_fopen).
Add is_url field to wrapper structure; the stream wrapper openers
will disallow opening is is_url && !PG(allow_url_fopen).
A

Always initialize wrappers, regardless of PG(allow_url_fopen).
Add is_url field to wrapper structure; the stream wrapper openers
will disallow opening is is_url && !PG(allow_url_fopen).
Add infrastructure for stat($url) and opendir($url).
Tidy up/centralize code that locates and instantiates wrappers for the
various operations.
Implement opendir for plain files.
Make the PHP opendir and dir functions use the streams implementations.
Add modelines for syntax highlighting the pear scripts in vim

show more ...


# 1f4d4873 16-Apr-2002 Wez Furlong

remove old code


Revision tags: php-4.2.0RC4
# 067ca4e8 12-Apr-2002 foobar

Do NOT use C++ comments in C code.


Revision tags: php-4.2.0RC3
# 7ff43f04 12-Apr-2002 Frank M. Kromann

Removing a unused local variable.
Setting the size before returning the value in readgzfile


# e1d0a147 10-Apr-2002 Wez Furlong

Implement stream context and status notification system.
Bump the BC for zlib notice to a warning
# See my RFC to php-dev a few days ago


# dedf2a4c 05-Apr-2002 Stig Bakken

@Add zlib.output_compression_level option (Stig)


# 385b2330 05-Apr-2002 Zeev Suraski

Fix gzip/bz2 builds for Windows


Revision tags: php-4.2.0RC2
# 5ee65bd8 24-Mar-2002 Wez Furlong

Phase 1 of wrapper OO cleanup.
# Collecting underpants


# 8da00939 21-Mar-2002 Wez Furlong

really nuke it...


# a662f012 21-Mar-2002 Wez Furlong

Convert the gzfile related functions into aliases for their equivalents
in ext/standard/file.c, so a gzopen()ed file pointer can be used in
fread, fseek etc.
Improved behaviour of zlib st

Convert the gzfile related functions into aliases for their equivalents
in ext/standard/file.c, so a gzopen()ed file pointer can be used in
fread, fseek etc.
Improved behaviour of zlib stream.
Moved passthru code into streams.c
# I'm not happy about BG(mmap_file)
Nuked gzgetss_state as no longer needed.

show more ...


Revision tags: php-4.2.0RC1
# 3dbde958 20-Mar-2002 Wez Furlong

Make state parameter of php_strip_tags passed by reference.
Move state tracking to stream structure.


# 659a071e 20-Mar-2002 Wez Furlong

Streams are all tracked as resources now.
Add some logic that will help track down leaks
when debug is enabled.


# 14d62c7b 20-Mar-2002 Wez Furlong

Add parameter here too...


# 06712a50 19-Mar-2002 Wez Furlong

Implement user-space streams.
There's probably room for improvement,
docs will following some time this week.


# c9d5e137 18-Mar-2002 Wez Furlong

TSRMLS related work on streams, as discussed with Zeev.
# Should be the last "broad" commit for a while
# Don't forget to make clean ; make


# 73e79322 18-Mar-2002 Zeev Suraski

Fix the build and all of the outstanding VC++ warnings


# d2d87622 17-Mar-2002 Wez Furlong

Streams now make more use of the memory manager, so tracking down
leaking streams should be easier.
# I hate these big commits


# 5d0c53ee 16-Mar-2002 Wez Furlong

Fix some issues with gzFile and fsockopen.


# bc264db9 16-Mar-2002 Wez Furlong

change * formatting


# 0f65280c 15-Mar-2002 Wez Furlong

New PHP streams...


Revision tags: help
# edcb5813 12-Mar-2002 Stefan Roehrich

(PHP gzencode) Reimplementation of gzencode(). Now works as documented
(gzencode(string data [, int level [, int encoding_mode]])),
should fix #15930.
@- The

(PHP gzencode) Reimplementation of gzencode(). Now works as documented
(gzencode(string data [, int level [, int encoding_mode]])),
should fix #15930.
@- The second parameter of gzencode() now is the compression level like
@ in the documentation. The encoding mode is a third (optional) parameter.
# Rework of gzencode(), output should be closer to real gzip output.
# I think in the old version there could be some problems with
# this function and output compression, should be fixed, too.

show more ...


# cede952f 12-Mar-2002 Stefan Roehrich

(PHP gzinflate) Workaround for bug #14939 (buffer error in gzinflate()).
Fixed prototype and added test for #14939.

# We have extra \0 if the input comes directly from gz

(PHP gzinflate) Workaround for bug #14939 (buffer error in gzinflate()).
Fixed prototype and added test for #14939.

# We have extra \0 if the input comes directly from gzdeflate()
# so give one extra byte as length to workaround behaviour of zlib.
# I want to avoid copying the input, but if there are problems,
# please tell (see my message <20020310175611.GA4472@stefan.roehri.ch> to
# php-dev).

show more ...


# 82a8d372 01-Mar-2002 Yasuo Ohgaki

Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that m

Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.

php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.

Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.

Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.

@ - Added ob_get_status() to get array of buffers and it's status. (Yasuo)
@ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
@ buffers that may not be deleted. (Yasuo)
@ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
@ deleted until script finshes. (Yasuo)
@ - Changed ob_*() function that have void return type to bool. All ob_*()
@ functions return TRUE for success, FALSE for failure. (Yasuo)

show more ...


12345678910>>...14