RE: [PHP-DEV] Patch that corrects non blocked socket reading on W IN32 From: Sascha Schumann (sascha <email protected>)
Date: 01/16/01

On Tue, 16 Jan 2001, Christophe Thibault wrote:

> Actually, it's not that dangerous as the redefinition of errno only occurs
> in fsock.c and errno is only used in fsock.c for retrieving socket errors...

    Something like this is more safer:

    #ifdef PHP_WIN32
    #define php_sock_errno() WSAGetLastError()
    #else
    #define php_sock_errno() errno
    #endif

    - Sascha

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>