diff options
author | Chris Vandomelen <chrisv@php.net> | 2000-10-22 23:43:48 +0000 |
---|---|---|
committer | Chris Vandomelen <chrisv@php.net> | 2000-10-22 23:43:48 +0000 |
commit | b57f9eb541130842fed43c79a05cf0dfa9ee8fb7 (patch) | |
tree | 35615dbffbd3b26a8b97c04e136ef5abf5b92bd3 /ext/sockets/php_sockets.h | |
parent | dbdfbd9e0c89cf746362bf27820a368dbf143698 (diff) | |
download | php-git-b57f9eb541130842fed43c79a05cf0dfa9ee8fb7.tar.gz |
Added ini entry for choosing whether to use the read() wrapper or directly
calling the read() system call.
# Some people were commenting about "oddities" in the wrapper that I hadn't
# noticed before, though I've used it in many places before now..
Diffstat (limited to 'ext/sockets/php_sockets.h')
-rw-r--r-- | ext/sockets/php_sockets.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sockets/php_sockets.h b/ext/sockets/php_sockets.h index 5c270532d3..23d45a54d7 100644 --- a/ext/sockets/php_sockets.h +++ b/ext/sockets/php_sockets.h @@ -82,6 +82,7 @@ typedef struct php_iovec { typedef struct { int le_destroy; int le_iov; + int use_system_read; } php_sockets_globals; |