History log of /PHP-5.6/ext/standard/fsock.c (Results 101 – 125 of 143)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# a753430f 01-Feb-2000 Andrei Zmievski

- Implemented socket_get_status() function. Some more stuff can be added
to it in the future.
- Renamed set_socket_timeout() to socket_set_timeout()
- Renamed set_socket_blocking() to s

- Implemented socket_get_status() function. Some more stuff can be added
to it in the future.
- Renamed set_socket_timeout() to socket_set_timeout()
- Renamed set_socket_blocking() to socket_set_blocking() but kept the
old name for compatibility. It now outputs a warning that
set_socket_timeout() is deprecated but still goes through.
@ Added socket_get_status() function. Renamed:
@ set_socket_timeout() -> socket_set_timeout()
@ set_socket_blocking() -> socket_set_blocking(). (Andrei)

show more ...


# fc678100 28-Jan-2000 Zeev Suraski

post.c really had nothing to do with POST anymore, and it belongs to the top level directory


# 62114c18 17-Jan-2000 Zeev Suraski

Destructors no longer return ints, the low level problem it was intended to solve is long gone now...


Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH
# 2fc0dac0 15-Jan-2000 Andrei Zmievski

(php_sockwait_for_data) timeout is not assigned yet, so check the right one.


# 44a712d8 15-Jan-2000 Sascha Schumann

(php_sockwait_for_data) clean up


# 4423bf9d 15-Jan-2000 Andrei Zmievski

Added ability to set timeout on socket read operations. New function
set_socket_timeout(socket, seconds, microseconds) sets the timeout.
@- Added ability to set timeout on socket read operati

Added ability to set timeout on socket read operations. New function
set_socket_timeout(socket, seconds, microseconds) sets the timeout.
@- Added ability to set timeout on socket read operations through
@ set_socket_timeout() function. (Andrei)

show more ...


# 73657092 10-Jan-2000 Zeev Suraski

@- Fixed a crash in pfsockopen() (Zeev)


# 43ae2bff 01-Jan-2000 Sascha Schumann

Happy Y2K patch! Happy new year (or the new millennium, depending on whether
you start counting at 0 or 1).


Revision tags: PRE_ISSET_TYPE
# 9ea9ca32 20-Dec-1999 Evan Klinger

Ex API and UDP support.
@- Added UDP support in fsockopen() (Evan).
# UDP activated with "udp://hostname"


Revision tags: PRE_LIBZEND_TO_ZEND
# 3ee4e65c 18-Dec-1999 Zeev Suraski

More php3_ annihilation


# fb1c77bd 17-Dec-1999 Zeev Suraski

- Made PHP_VERSION and PHP_OS work again
- More php3_ cleanup
@- Restored the PHP_VERSION and PHP_OS constants (Zeev)


# a3c65143 17-Dec-1999 Zeev Suraski

More php3_ annihilation


# 02d3b394 17-Dec-1999 Zeev Suraski

More php3_ annihilation


Revision tags: PRE_RETURN_REF_MERGE, RETURN_REF_BP, PRE_RETURN_REF_PATCH
# 4a60eed4 05-Dec-1999 Sascha Schumann

Fix some warnings


# 7c209d77 03-Dec-1999 Sascha Schumann

Use socklen_t where appropiate


# 3b515617 01-Dec-1999 Sascha Schumann

Make array.c thread-safe


# 94c36e88 01-Dec-1999 Sascha Schumann

Make fsock module thread-safe


Revision tags: ZO_B1, ZEND_OPTIMIZER_B1, php-4.0b3, PRE_USED_RETURN_VALUE_PATCH, php-4.0b3_RC5, php-4.0b3_RC4, php-4.0b3_RC3, php-4.0b3_RC2
# 31b1a8fc 24-Oct-1999 Thies C. Arntzen

kill warning


# b5c3c7bf 15-Oct-1999 Thies C. Arntzen

files are now resources, file.c is thread-safe, the le_ vars are no longer shared,
but they are accessible thru "php_file_le_socket(), php_file_le_uploads()..."
i also updated the ftp, pdf an

files are now resources, file.c is thread-safe, the le_ vars are no longer shared,
but they are accessible thru "php_file_le_socket(), php_file_le_uploads()..."
i also updated the ftp, pdf and file-upload stuff to match the new requirements.
@- Cleaned up File-Module (Thies)

show more ...


# 0cc16414 12-Oct-1999 Thies C. Arntzen

starting to clean-up/new API'ize and resourcify the file-stuff - nothing happened yet - just renaming things around.


Revision tags: PRE_FETCH_READ_PATCH, before-sapi-split, PRE_DELAYED_ARRAY_FETCH_PATCH
# 5c40e7c4 07-Sep-1999 Stig Bakken

Add thread-safety notice here. The solution is using gethostbyname_r,
but it seems that it takes different parameters on Solaris and
Linux. ;-P We should probably make a wrapper function, an

Add thread-safety notice here. The solution is using gethostbyname_r,
but it seems that it takes different parameters on Solaris and
Linux. ;-P We should probably make a wrapper function, and make a
configure test that checks if there is a reentrant version available,
and if not protect gethostbyname and similar calls with a mutex until
the results have been copied. Ugly.

show more ...


# 7a9ad9d0 25-Aug-1999 Andi Gutmans

Make fopen() work with URL's in Win32


Revision tags: php-4.0b2
# dcf91143 02-Aug-1999 Zeev Suraski

AIX needs this include...


# 3cb1eb04 02-Aug-1999 Zeev Suraski

Removed '3' from key functions in PHP (maintained compatibility through
php3_compat.h)


# 1b2c932c 26-Jul-1999 Andrey Hristov

More symbol work.

I've defined a few macros to help with module/request init/startup function definitions.
Basically:

PHP_MINIT_FUNCTION(module)
PHP_MSHUTDOWN_FUNCTION(modul

More symbol work.

I've defined a few macros to help with module/request init/startup function definitions.
Basically:

PHP_MINIT_FUNCTION(module)
PHP_MSHUTDOWN_FUNCTION(module)
PHP_RINIT_FUNCTION(module)
PHP_RSHUTDOWN_FUNCTION(module)
PHP_MINFO_FUNCTION(module)

These will expand to proper function prototypes.

Now to specify these in the module entry, use:

PHP_MINIT(module)
PHP_MSHUTDOWN(module)
PHP_RINIT(module)
PHP_RSHUTDOWN(module)
PHP_MINFO(module)

I've updated all modules in ext/standard and everything from ext/apache to ext/db.
If you can, please update your module to use these macros.

show more ...


123456