From 165a97c90f40c3739c97005746738e59ea76e281 Mon Sep 17 00:00:00 2001 From: Jason Greene Date: Wed, 6 Mar 2002 20:19:09 +0000 Subject: 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) --- ext/sockets/php_sockets.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'ext/sockets/php_sockets.h') 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); @@ -99,11 +93,6 @@ typedef struct { int error; } php_socket; -typedef struct { - fd_set set; - SOCKET max_fd; -} php_fd_set; - typedef struct { zend_bool use_system_read; } php_sockets_globals; -- cgit v1.2.1