summaryrefslogtreecommitdiff
path: root/ext/sockets/php_sockets.h
diff options
context:
space:
mode:
authorJason Greene <jason@php.net>2002-03-06 20:19:09 +0000
committerJason Greene <jason@php.net>2002-03-06 20:19:09 +0000
commit165a97c90f40c3739c97005746738e59ea76e281 (patch)
tree86e268fb254be48aa24d90885232d9f880719b14 /ext/sockets/php_sockets.h
parentd716e02a988b2fa22959aeb4967b3642b3454745 (diff)
downloadphp-git-165a97c90f40c3739c97005746738e59ea76e281.tar.gz
Sockets Rework Patch 3 of 3
Nuked all fd code Rewrote socket_select to use arrays instead of the fd code (This has the side-effect of fixing quite a few bugs)
Diffstat (limited to 'ext/sockets/php_sockets.h')
-rw-r--r--ext/sockets/php_sockets.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/ext/sockets/php_sockets.h b/ext/sockets/php_sockets.h
index 5d2f71ba5a..06529f7e0b 100644
--- a/ext/sockets/php_sockets.h
+++ b/ext/sockets/php_sockets.h
@@ -42,12 +42,6 @@ extern zend_module_entry sockets_module_entry;
PHP_MINIT_FUNCTION(sockets);
PHP_MINFO_FUNCTION(sockets);
-PHP_FUNCTION(socket_fd_alloc);
-PHP_FUNCTION(socket_fd_free);
-PHP_FUNCTION(socket_fd_set);
-PHP_FUNCTION(socket_fd_isset);
-PHP_FUNCTION(socket_fd_clear);
-PHP_FUNCTION(socket_fd_zero);
PHP_FUNCTION(socket_iovec_alloc);
PHP_FUNCTION(socket_iovec_free);
PHP_FUNCTION(socket_iovec_set);
@@ -100,11 +94,6 @@ typedef struct {
} php_socket;
typedef struct {
- fd_set set;
- SOCKET max_fd;
-} php_fd_set;
-
-typedef struct {
zend_bool use_system_read;
} php_sockets_globals;