From: Antony Dovgal Date: Mon, 25 Dec 2006 19:19:08 +0000 (+0000) Subject: stream_socket_shutdown() is Unicode safe by definition X-Git-Tag: RELEASE_1_0_0RC1~510 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=824323149f7bd068355517bc71f2e41d91d43ba6;p=php stream_socket_shutdown() is Unicode safe by definition --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index 922c3fc778..b9694a7f25 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -1646,7 +1646,7 @@ PHP_FUNCTION(stream_resolve_include_path) /* }}} */ #ifdef HAVE_SHUTDOWN -/* {{{ proto int stream_socket_shutdown(resource stream, int how) +/* {{{ proto int stream_socket_shutdown(resource stream, int how) U causes all or part of a full-duplex connection on the socket associated with stream to be shut down. If how is SHUT_RD, further receptions will be disallowed. If how is SHUT_WR, further transmissions will be disallowed. @@ -1672,8 +1672,8 @@ PHP_FUNCTION(stream_socket_shutdown) RETURN_BOOL(php_stream_xport_shutdown(stream, (stream_shutdown_t)how TSRMLS_CC) == 0); } -#endif /* }}} */ +#endif /* * Local variables: