History log of /PHP-7.4/main/network.c (Results 151 – 175 of 231)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 8ca0b28b 19-Oct-2002 Ilia Alshanetsky

Fixed a typo.


# 7de1f45a 18-Oct-2002 Wez Furlong

Revert my last bogus commit.
Change the comparison to something that is less likely to inspire me to
make the same mistake again...


# e0c02649 18-Oct-2002 Wez Furlong

Improve EOF detection. Fixes #19970.


# be560650 14-Oct-2002 Wez Furlong

Implement better SSL error handling.


# 0bcd2ccb 13-Oct-2002 Wez Furlong

A much better probable fix for #16114.


# bc0948bb 13-Oct-2002 Wez Furlong

Probable fix for #16114


# 70b796b1 13-Oct-2002 Wez Furlong

(php_socket_errno) win32 errno compatible macro.
(php_socket_strerror) win32 compatible strerror replacement.
Add an E_NOTICE when a socket write fails.


Revision tags: RELEASE_1_0b1, php-4.3.0pre1
# 077fe52d 05-Oct-2002 Wez Furlong

This seems to resolve the issues with fgets.
I've moved EOF detection into the streams layer; a stream reader
implementation should set stream->eof when it detects EOF.
Fixed test for use

This seems to resolve the issues with fgets.
I've moved EOF detection into the streams layer; a stream reader
implementation should set stream->eof when it detects EOF.
Fixed test for user streams - it still fails but that is due to an output
buffering bug.

show more ...


# a4ec211e 04-Oct-2002 Sascha Schumann

Add a few notes


# 9c5883bd 04-Oct-2002 Wez Furlong

replace dont_block with a flag.


# 4f7e6dad 04-Oct-2002 Sascha Schumann

Improve the general behaviour of stream_gets and fix its semantics
with regard to sockets. The behaviour should be aligned with PHP 4.2 now.
This has been verified to some degree.

If

Improve the general behaviour of stream_gets and fix its semantics
with regard to sockets. The behaviour should be aligned with PHP 4.2 now.
This has been verified to some degree.

If the underlying stream operations block when no new data is readable,
we need to take extra precautions.

If there is buffered data available, we check for a EOL. If it exists,
we pass the data immediately back to the caller. This saves a call
to the read implementation and will not block where blocking
is not necessary at all.

If the stream buffer contains more data than the caller requested,
we can also avoid that costly step and simply return that data.

show more ...


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# 9509c209 28-Sep-2002 Wez Furlong

remove chunk size setting code (it's now in streams.c).
Move timeout setting code.


# 696e0a23 25-Sep-2002 Wez Furlong

Implement persistent streams. (for pfsockopen).
Juggle some includes/definitions.
Tidy up streams use in ext/standard/file.c


# c74b9fac 23-Sep-2002 Wez Furlong

Implement a default_socket_timeout and auto_detect_line_endings ini options.
Also move user_agent from BG to FG.


# 4d8a07d5 23-Sep-2002 Wez Furlong

Implement read buffering in streams.
Eliminate similar code from network.c.
Implement fgets equivalent at the streams level, which can detect
the mac, dos and unix line endings and handle

Implement read buffering in streams.
Eliminate similar code from network.c.
Implement fgets equivalent at the streams level, which can detect
the mac, dos and unix line endings and handle them appropriately.
The default behaviour is unix (and dos) line endings.
An ini option to control this behaviour will follow.
# Don't forget to make clean!
# I've done some testing but would appreciate feedback from
# people with scripts/extensions that seek around a lot.

show more ...


# 714eb806 12-Sep-2002 Stefan Esser

made new ssl activate function the default.


Revision tags: RELEASE_0_91
# 1e09610f 09-Sep-2002 Anantha Kesari H Y

NetWare related changes/modifications


# cbf5e3ca 08-Sep-2002 Stefan Esser

Added possibility to reuse an old SSL session id.

Ugly but needed for f.e.: debians ftpd-ssl


Revision tags: php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2
# e8b50bc8 25-Aug-2002 Sebastian Bergmann

Fix ZTS build.


# a1f7bb12 25-Aug-2002 Marcus Boerger

use php_error_docref()


Revision tags: php-4.2.3RC1
# 5f9a5a7c 19-Aug-2002 Wez Furlong

Remove php_stream_sock_set_blocking and replace with
php_stream_set_option which can be used in a similar way as ioctl()
to set options for streams.

Current options include buffering

Remove php_stream_sock_set_blocking and replace with
php_stream_set_option which can be used in a similar way as ioctl()
to set options for streams.

Current options include buffering and blocking support.

o Buffer control is support for stdio based streams.
o Blocking/non-blocking is supported for stdio and socket based streams.

show more ...


# fcc03805 17-Aug-2002 Stig Venaas

Added --enable-ipv6 and only look up AAAA in DNS when enabled


# 4feff548 13-Aug-2002 Dan Kalowsky

Correcting as per discussion with Iliaa and Edin on efnet://#php.bugs


# 1027dfcd 13-Aug-2002 Dan Kalowsky

Bug Fix #16113, as reflective of a php-dev convo between wez and iliaa


# 94be838d 11-Aug-2002 Wez Furlong

More verbosity when activating SSL on a socket fails.


12345678910