History log of /PHP-7.3/ext/standard/http_fopen_wrapper.c (Results 201 – 225 of 279)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# c5664783 13-Dec-2003 Sara Golemon

Route mkdir()/rmdir() via wrapper ops.
Move current rmdir()/rmdir() code to plain_wrappers.c
Implement mkdir()/rmdir() in ftp:// wrapper


# b1f8236b 12-Dec-2003 Sara Golemon

Route rename() via wrapper ops.
Move current rename() code to main/streams/plain_wrapper.c
Implement ftp/rename()
Implement userstreams/rename()


# 5ad67a92 03-Dec-2003 Sara Golemon

Add http proxy support via context option.


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 6a7dde29 28-Aug-2003 Sascha Schumann

kill warnings


Revision tags: php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1, php-4.3.3RC1
# 82ddb233 13-Jun-2003 Sara Golemon

Loosen restrictions on method used with http_fopen_wrapper, still default to GET though.


# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b
# 5126fbe5 14-May-2003 Sara Golemon

Setup unlink() method in wrapper_ops structure, implement unlink in plainfiles wrapper, explicitly set method NULL in other wrappers (for now), and rewrite unlink userland function to call into wrapp

Setup unlink() method in wrapper_ops structure, implement unlink in plainfiles wrapper, explicitly set method NULL in other wrappers (for now), and rewrite unlink userland function to call into wrapper_ops

show more ...


Revision tags: SPL_ALPHA, php-4.3.2RC2
# 169b3f72 28-Apr-2003 Wez Furlong

Fix for #23340; fopen on multiple urls from the same server crashes.


Revision tags: RELEASE_0_6, RELEASE_0_5, init
# 3d6fccc0 14-Apr-2003 Ilia Alshanetsky

Fixed bug #23152 ($http_response_header empty on invalid URLs)


# 70155b6d 07-Apr-2003 Sara Golemon

Introduce support for context options 'method', 'header', 'content'


Revision tags: php-4.3.2RC1
# 53530765 04-Mar-2003 Ilia Alshanetsky

Added support for http redirects to ftp.
Fixed bug #22508 (Added protection against circular HTML redirects).


# 76ebaa6e 27-Feb-2003 Wez Furlong

- Move https:// and ftps:// wrapper registration into the openssl module.
- Expose the http:// and ftp:// wrappers as PHPAPI
- Remove unused variables


# fd61f690 27-Feb-2003 Wez Furlong

Another big commit (tm).

Main Changes:
- Implement a socket transport layer for use by all code that needs to open
some kind of "special" socket for network or IPC.
- Extension

Another big commit (tm).

Main Changes:
- Implement a socket transport layer for use by all code that needs to open
some kind of "special" socket for network or IPC.
- Extensions can register (and override) transports.
- Implement ftruncate() on streams via the ioctl-alike option interface.
- Implement mmap() on streams via the ioctl-alike option interface.
- Implement generic crypto API via the ioctl-alike option interface.
(currently only supports OpenSSL, but could support other SSL toolkits,
and other crypto transport protocols).

Impact:
- tcp sockets can be overloaded by the openssl capable sockets at runtime,
removing the link-time requirement for ssl:// and https:// sockets and
streams.
- checking stream types using PHP_STREAM_IS_SOCKET is deprecated, since
there are now a range of possible socket-type streams.

Working towards:
- socket servers using the new transport layer
- mmap support under win32
- Cleaner code.

# I will be updating the win32 build to add the new files shortly
# after this commit.

show more ...


# 69094da0 20-Feb-2003 Ilia Alshanetsky

Revert accidental commit.


# 3bff5c04 20-Feb-2003 Ilia Alshanetsky

Fixed bug #22308 (optimized passthru, code is now ~40 times faster).


# a6ef609a 19-Feb-2003 Ilia Alshanetsky

Fixed bug #22283 (possible crash when opening relative URLs).


# 4934744b 17-Feb-2003 Zeev Suraski

Win32 build improvements


Revision tags: php-4.3.1
# 0a18a9d7 16-Feb-2003 Wez Furlong

A add much more useful select(2) implementation than is provided by
windows sockets. The winsock implementation will only work with sockets;
our implementation works with sockets and file de

A add much more useful select(2) implementation than is provided by
windows sockets. The winsock implementation will only work with sockets;
our implementation works with sockets and file descriptors.
By association, stream_select() will now operate correctly with files, pipes and sockets.

This change required linking against the winsock2 library. In terms of
compatibility, only older versions of windows 95 do not have winsock2
installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user.

Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.

show more ...


# f8eba6de 13-Feb-2003 Ilia Alshanetsky

Added 'x' mode for fopen() used on local files. This mode will create a new
file only if a file does not already exist (O_CREAT|O_EXCL).


# 1c3de808 13-Feb-2003 Wez Furlong

Avoid problems with chunk_size and auto_detect_line_endings.


# 3631b28f 07-Feb-2003 Sara Golemon

chunk_size should always be reduced to 1 while scanning response headers to avoid buffering the actual stream prior to any read calls.


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 71ab7dfc 03-Jan-2003 Ilia Alshanetsky

Fixed a memory leak that occurs if the location specified by redirect header
cannot be opened.


# c52cdad2 03-Jan-2003 Ilia Alshanetsky

Further fixes related to bug #21267.


# b506f5c8 31-Dec-2002 Sebastian Bergmann

Bump year.


# 88d26985 29-Dec-2002 Ilia Alshanetsky

Fixed bug #21267 (opening URLs that result in redirection to a relative
path was failing).


12345678910>>...12