From fd61f69077f6156ca71dde60ecfd9ed9765a02db Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 27 Feb 2003 17:43:38 +0000 Subject: 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. --- main/streams/php_streams_int.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/streams/php_streams_int.h') diff --git a/main/streams/php_streams_int.h b/main/streams/php_streams_int.h index 05ad1a0dc8..ddf569399d 100644 --- a/main/streams/php_streams_int.h +++ b/main/streams/php_streams_int.h @@ -56,4 +56,6 @@ extern php_stream_wrapper php_plain_files_wrapper; #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) #endif +void php_stream_tidy_wrapper_error_log(php_stream_wrapper *wrapper TSRMLS_DC); +void php_stream_display_wrapper_errors(php_stream_wrapper *wrapper, const char *path, const char *caption TSRMLS_DC); -- cgit v1.2.1