ID: 15079
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Status: Closed
Bug Type: Sockets related
Operating System: FreeBSD 4.3-RELEASE
PHP Version: 4.1.1
New Comment:

The file is in php-4.1.1/ext/sockets/ .


Previous Comments:
------------------------------------------------------------------------

[2002-01-17 03:28:02] [EMAIL PROTECTED]

Unfortunately a bug slipped it and it is fixed in CVS already. But you
can easily fix it yourself by changing line 1300 in sockets.c from

  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr", &arg1,
&len, &flags) == FAILURE)

to
  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rll", &arg1,
&len, &flags) == FAILURE)

------------------------------------------------------------------------

[2002-01-17 02:54:37] [EMAIL PROTECTED]

Code: $buf=socket_recv($d->descriptor, 1024, $flags);
Warning:  socket_recv() expects exactly 2 parameters, 3 given in ...

Code: $buf=socket_recv($d->descriptor, 1024);
Warning:  socket_recv() expects parameter 2 to be resource, integer
given in ...

Help for socket_recv: mixed socket_recv (resource socket, int len, int
flags);



------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=15079&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to