more size_t -> socklen_t.

Noticed by tychay@php.net
This commit is contained in:
Wez Furlong 2003-07-02 21:11:35 +00:00
parent e158cd285e
commit 49228bd5e2

View File

@ -255,7 +255,7 @@ PHPAPI int php_stream_xport_listen(php_stream *stream, int backlog, char **error
/* Get the next client and their address (as a string) */
PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
char **textaddr, int *textaddrlen,
void **addr, size_t *addrlen,
void **addr, socklen_t *addrlen,
struct timeval *timeout,
char **error_text
TSRMLS_DC)
@ -294,7 +294,7 @@ PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
PHPAPI int php_stream_xport_get_name(php_stream *stream, int want_peer,
char **textaddr, int *textaddrlen,
void **addr, size_t *addrlen
void **addr, socklen_t *addrlen
TSRMLS_DC)
{
php_stream_xport_param param;