diff options
author | Andrey Hristov <andrey@php.net> | 2003-12-31 10:56:32 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2003-12-31 10:56:32 +0000 |
commit | 2e474e90c3b27ca38c727f2f0f2fbcfad16a15c9 (patch) | |
tree | 90b2fadd6f397531e4b1a84f1c43bde390fac639 | |
parent | 9285d613f56f49f72c2b5c70fb0a857158858576 (diff) | |
download | php-git-2e474e90c3b27ca38c727f2f0f2fbcfad16a15c9.tar.gz |
proto fix
-rw-r--r-- | ext/standard/fsock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/fsock.c b/ext/standard/fsock.c index 949507954e..31e27a7764 100644 --- a/ext/standard/fsock.c +++ b/ext/standard/fsock.c @@ -116,14 +116,14 @@ static void php_fsockopen_stream(INTERNAL_FUNCTION_PARAMETERS, int persistent) /* }}} */ -/* {{{ proto int fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) +/* {{{ proto resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) Open Internet or Unix domain socket connection */ PHP_FUNCTION(fsockopen) { php_fsockopen_stream(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); } /* }}} */ -/* {{{ proto int pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) +/* {{{ proto resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) Open persistent Internet or Unix domain socket connection */ PHP_FUNCTION(pfsockopen) { |